ref: d898aeddbefdf3ab84a2c89dd04bc9862f351204
parent: a787f45580b8d0dee569b7cafceb7c8737df6487
author: Werner Lemberg <[email protected]>
date: Tue Aug 29 05:50:34 EDT 2006
* configure: Make it possible to handle configure options which have strings containing spaces.
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2006-08-29 Dr. Werner Fink <[email protected]>
+
+ * configure: Make it possible to handle configure options which
+ have strings containing spaces.
+
+2006-08-27 David Turner <[email protected]>
+
+ <TO BE WRITTEN>
+
2006-08-27 Jens Claudius <[email protected]>
Fix miscellaneous compiler warnings.
--- a/configure
+++ b/configure
@@ -91,6 +91,10 @@
# call make
-CFG="$@" $GNUMAKE setup unix
+CFG=
+for x in ${1+"$@"}; do
+ CFG="$CFG \"$x\""
+done
+CFG=$CFG $GNUMAKE setup unix
# eof