[open-ils-commits] r10487 - trunk

svn at svn.open-ils.org svn at svn.open-ils.org
Sat Aug 30 10:31:50 EDT 2008


Author: dbs
Date: 2008-08-30 10:31:48 -0400 (Sat, 30 Aug 2008)
New Revision: 10487

Modified:
   trunk/configoptions.sh
Log:
Fix syntax errors in configoptions.sh (although this file might be rm'ed shortly)


Modified: trunk/configoptions.sh
===================================================================
--- trunk/configoptions.sh	2008-08-30 14:30:02 UTC (rev 10486)
+++ trunk/configoptions.sh	2008-08-30 14:31:48 UTC (rev 10487)
@@ -33,7 +33,7 @@
 read X;
 if [ $X == "y" ] ; then
 TARGS=${TARGS}" --enable-openils-reporter"
-elseif [ $X == "n" ] ; then
+elif [ $X == "n" ] ; then
 TARGS=${TARGS}" --disable-openils-reporter"
 fi
 echo "Install Open-ILS XUL CLIENT? (y/n) "
@@ -45,7 +45,7 @@
 read X;
 if [ $X == "y" ] ; then
 TARGS=${TARGS}" --enable-openils-server-xul"
-elseif [ $X == "n" ] ; then
+elif [ $X == "n" ] ; then
 TARGS=${TARGS}" --disable-openils-server-xul"
 fi
 echo "Install EVERGREEN CORE? (y/n) "



More information about the open-ils-commits mailing list