ooo-build r13087 - in trunk: . bin



Author: mloiseleur
Date: Mon Jul  7 13:51:27 2008
New Revision: 13087
URL: http://svn.gnome.org/viewvc/ooo-build?rev=13087&view=rev

Log:

2008-07-07  Michel Loiseleur  <mloiseleur linagora com>

* bin/unpack: fix '==' into the more standard '=' in test call.


Modified:
   trunk/ChangeLog
   trunk/bin/unpack

Modified: trunk/bin/unpack
==============================================================================
--- trunk/bin/unpack	(original)
+++ trunk/bin/unpack	Mon Jul  7 13:51:27 2008
@@ -1,4 +1,4 @@
-#!/bin/sh 
+#!/bin/sh
 
 #
 # See setup for user tweakables.
@@ -51,7 +51,7 @@
 	check_tarball $BINUTILS_TARBALL
     fi
 fi
-	
+
 # this will become the 'normal' way to do an all-through build name is misleading
 if test "z$SPLIT" != "z"; then
 	if test "z$PIECE" != "z"; then
@@ -159,7 +159,7 @@
 fi
 
 echo "Unpacking OO.o build tree - [ go and have some $DRINK ] ..."
-if test "z$SPLIT" == "z"; then
+if test "z$SPLIT" = "z"; then
 	echo "Unpacking $OOO_TARBALL..."
 	($OOO_DECOMPRESS_CMD $SRCDIR/$OOO_TARBALL | $GNUTAR xpf - ) || exit 1
 else # split packages
@@ -168,7 +168,7 @@
 		($OOO_DECOMPRESS_CMD "$SRCDIR/$OOO_SPLIT_PREFIX$pkg.tar.bz2" | $GNUTAR xpf - ) || exit 1
 	done
 	if test "z$PIECE" != "z"; then
-		ln -s "$BUILDDIR/$CVSTAG-$PIECE" $OOBUILDDIR 
+		ln -s "$BUILDDIR/$CVSTAG-$PIECE" $OOBUILDDIR
 	fi
 fi
 
@@ -211,7 +211,7 @@
 
 # workaround for i#56622, n#210797
 
-if test "z$PIECE" == "z"; then
+if test "z$PIECE" = "z"; then
 case "$OOO_LANGS" in
 *\ hu\ *|*\ hu|hu\ *|hu)
     echo "Fixing Hungarian strings: OOo vs. SO"
@@ -234,7 +234,7 @@
 # copy in misc Mono related dlls if we need to
 # we can't build them on Unix.
 CLI_TYPES=cli_types.dll
-if test "z$PIECE" == "z"; then
+if test "z$PIECE" = "z"; then
 if test -f "$SRCDIR/$CLI_TYPES"; then
     mkdir -p $OOBUILDDIR/external/cli
     $GNUCP -af $SRCDIR/$CLI_TYPES $SRCDIR/cli_types_bridgetest.dll $OOBUILDDIR/external/cli
@@ -464,7 +464,7 @@
     $GNUCP $TOOLSDIR/src/tango_mainapp_16.png $OOBUILDDIR/ooo_custom_images/tango/res/mainapp_16.png || exit 1;
 fi
 
-if test "z$PIECE" == "z"; then
+if test "z$PIECE" = "z"; then
 
 if test "x$OOO_EXTRA_ARTWORK" != "x"; then
 # Html export rulers etc.



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]