[OPEN-ILS-DEV] errors in configoptions.sh, r10485

Graham Fawcett graham.fawcett at gmail.com
Sat Aug 30 00:04:07 EDT 2008


Hi folks,

The file configoptions.sh in trunk (r10485) has some syntax errors in
it ("elseif" instead of "elif"); patch below.

Also, on my machine, autogen.sh fails because there is no README file;
just touching README fixed the problem and allows autogen.sh /
configure / make to proceed.

Cheers,
Graham

--- configoptions.sh	(revision 10485)
+++ configoptions.sh	(working copy)
@@ -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-dev mailing list