* configure: Make it possible to handle configure options which

have strings containing spaces.
This commit is contained in:
Werner Lemberg 2006-08-29 09:50:34 +00:00
parent a787f45580
commit d898aeddbe
2 changed files with 14 additions and 1 deletions

View File

@ -1,3 +1,12 @@
2006-08-29 Dr. Werner Fink <werner@suse.de>
* configure: Make it possible to handle configure options which
have strings containing spaces.
2006-08-27 David Turner <david@freetype.org>
<TO BE WRITTEN>
2006-08-27 Jens Claudius <jens.claudius@yahoo.com>
Fix miscellaneous compiler warnings.

6
configure vendored
View File

@ -91,6 +91,10 @@ fi
# call make
CFG="$@" $GNUMAKE setup unix
CFG=
for x in ${1+"$@"}; do
CFG="$CFG \"$x\""
done
CFG=$CFG $GNUMAKE setup unix
# eof