[Opensrf-commits] r1431 - trunk
svn at svn.open-ils.org
svn at svn.open-ils.org
Wed Sep 17 11:35:59 EDT 2008
Author: erickson
Date: 2008-09-17 11:35:57 -0400 (Wed, 17 Sep 2008)
New Revision: 1431
Modified:
trunk/autogen.sh
Log:
using single "=" in test for more general compliance
Modified: trunk/autogen.sh
===================================================================
--- trunk/autogen.sh 2008-09-15 19:56:56 UTC (rev 1430)
+++ trunk/autogen.sh 2008-09-17 15:35:57 UTC (rev 1431)
@@ -2,9 +2,9 @@
# autogen.sh - generates configure using the autotools
OS=`uname`
-if [ "$OS" == "Darwin" ]; then
+if [ "$OS" = "Darwin" ]; then
: ${LIBTOOLIZE=glibtoolize}
-elif [ "$OS" == "Linux" ]; then
+elif [ "$OS" = "Linux" ]; then
: ${LIBTOOLIZE=libtoolize}
fi
More information about the opensrf-commits
mailing list