[Lunar-commits] CVS: moonbase/utils/coreutils CONFIGURE,1.1,1.2
Auke Kok
sofar at lunar-linux.org
Tue May 25 08:34:38 GMT 2004
Update of /var/cvs/lunar/moonbase/utils/coreutils
In directory dbguin.lunar-linux.org:/tmp/cvs-serv11367
Modified Files:
CONFIGURE
Log Message:
largefile ... on ... by default (sounds like a good idea nowadays)
Index: CONFIGURE
===================================================================
RCS file: /var/cvs/lunar/moonbase/utils/coreutils/CONFIGURE,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- CONFIGURE 13 Mar 2003 05:11:56 -0000 1.1
+++ CONFIGURE 25 May 2004 08:34:35 -0000 1.2
@@ -1,15 +1,17 @@
-if ! grep -q CONFIGURED $MODULE_CONFIG; then
+if ! grep -q CONFIGURED $MODULE_CONFIG ; then
- if query "Do you want to enable large file support? " n
- then OPTS=$OPTS" --enable-largefile"
- else OPTS=$OPTS" --disable-largefile"
+ if query "Do you want to enable large file support? " y ; then
+ OPTS=$OPTS" --enable-largefile"
+ else
+ OPTS=$OPTS" --disable-largefile"
fi
- if query "Do you want to use NLS? " y
- then OPTS=$OPTS" --enable-nls"
- else OPTS=$OPTS" --disable-nls"
+ if query "Do you want to use NLS? " y ; then
+ OPTS=$OPTS" --enable-nls"
+ else
+ OPTS=$OPTS" --disable-nls"
fi
- echo 'CONFIGURED="y"' >> $MODULE_CONFIG
- echo 'OPTS='\"$OPTS\" >> $MODULE_CONFIG
+ echo 'CONFIGURED="y"' >> $MODULE_CONFIG
+ echo 'OPTS='\"$OPTS\" >> $MODULE_CONFIG
fi
More information about the Lunar-commits
mailing list