|
From: Benjamin C. <bc...@us...> - 2001-10-11 14:45:39
|
Update of /cvsroot/phpbt/phpbt
In directory usw-pr-cvs1:/tmp/cvs-serv7865
Modified Files:
configure
Log Message:
read doesn't grab all the values, thus the options are lost
Index: configure
===================================================================
RCS file: /cvsroot/phpbt/phpbt/configure,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- configure 2001/09/26 14:20:37 1.14
+++ configure 2001/10/11 14:45:36 1.15
@@ -182,7 +182,7 @@
retval=$?
- read choice <$tempfile
+ choice=`cat $tempfile`
if [ $retval -eq 0 ]; then
for selected in $choice
do
|