[Lunar-commits] CVS: theedge/var/lib/lunar/functions build.lunar,
1.21, 1.22 config.lunar, 1.14, 1.15
Auke Kok
sofar at lunar-linux.org
Tue Oct 12 15:02:14 UTC 2004
Update of /var/cvs/lunar/theedge/var/lib/lunar/functions
In directory espresso.foo-projects.org:/tmp/cvs-serv8113
Modified Files:
build.lunar config.lunar
Log Message:
the config patch is needed to properly quote options... I just removed the localsaconfig crap from theedge this way too.
Index: build.lunar
===================================================================
RCS file: /var/cvs/lunar/theedge/var/lib/lunar/functions/build.lunar,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -d -r1.21 -r1.22
--- build.lunar 12 Oct 2004 14:53:53 -0000 1.21
+++ build.lunar 12 Oct 2004 15:02:12 -0000 1.22
@@ -359,22 +359,6 @@
verbose_msg "building \"$MODULE\" version \"$VERSION\" in `pwd`"
- if [ -x ./configure ] || [ -x ./src/configure ] ; then
- if [ -f /var/lib/lunar/localsaconfig ]; then
- if [ -f /var/cache/config/$MODULE ] ; then
- message "${MESSAGE_COLOR}These are your current -- config options for module ${MODULE_COLOR}$MODULE"
- message "${FILE_COLOR}(/var/cache/config/$MODULE)"
- cat /var/cache/config/$MODULE
- fi
-
- if query "Do you wish to add -- options to ./configure?" n ; then
- edit_file /var/cache/config/$MODULE
- OPTS="$OPTS $(cat /var/cache/config/$MODULE)"
- message "${MESSAGE_COLOR} OPTS= ${MODULE_COLOR}$OPTS"
- fi
- fi
- fi
-
if [ -s $SCRIPT_DIRECTORY/BUILD ] ; then
run_module_file $MODULE BUILD
else
Index: config.lunar
===================================================================
RCS file: /var/cvs/lunar/theedge/var/lib/lunar/functions/config.lunar,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -d -r1.14 -r1.15
--- config.lunar 12 Oct 2004 10:09:17 -0000 1.14
+++ config.lunar 12 Oct 2004 15:02:12 -0000 1.15
@@ -26,7 +26,7 @@
if [ "$1" == "$LOCAL_CONFIG" ] ; then
NEW=$(printf "%16s=%s" "$2" "$3")
else
- NEW="$2=$3"
+ NEW="$2=\"$3\""
fi
# on-demand creation
More information about the Lunar-commits
mailing list