grim/guifications3

Parents 5469f5a2521c
Children 3730399fdcde
the call to lappend in add_command in gflib-autogen.sh needed to quote ${ARGS} otherwise we were actually only running the commands with the first arg
--- a/gflib/gflib-autogen.sh Sat Sep 12 22:23:42 2009 -0500
+++ b/gflib/gflib-autogen.sh Sat Sep 12 22:57:17 2009 -0500
@@ -26,6 +26,7 @@
###############################################################################
lappend() {
__list=$1
+
if lempty $__list; then
eval "$__list=$2"
else
@@ -98,7 +99,7 @@
ARGS="${@}"
lappend COMMANDS ${CMD}
- lappend FLAGS ${ARGS}
+ lappend FLAGS "\"${ARGS}\""
}
check_config_file() {