Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Sandiford <rdsandiford@googlemail.com>2007-03-21 23:11:06 +0300
committerRichard Sandiford <rdsandiford@googlemail.com>2007-03-21 23:11:06 +0300
commit52f4adec2e940d1cc53d96101f2459e8df63fd5b (patch)
tree3cc56eed50bf8eb1527a88b0adff4396b965389d /configure
parentf7ddb59088918db1816ec293cbffb00b71ccaed6 (diff)
* configure.ac (TOPLEVEL_CONFIGURE_ARGUMENTS): Fix m4 quoting
of glob. Quote arguments with single quotes too. * configure: Regenerate.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 0554463a2..6e989c29a 100755
--- a/configure
+++ b/configure
@@ -1768,7 +1768,7 @@ set -- "$progname" "$@"
for ac_arg
do
case "$ac_arg" in
- *" "*|*" "*|*\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?*)
+ *" "*|*" "*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?\']*)
ac_arg=`echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"`
# if the argument is of the form -foo=baz, quote the baz part only
ac_arg=`echo "'$ac_arg'" | sed "s/^'\([-a-zA-Z0-9]*=\)/\\1'/"` ;;