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
parentf7ddb59088918db1816ec293cbffb00b71ccaed6 (diff)
* configure.ac (TOPLEVEL_CONFIGURE_ARGUMENTS): Fix m4 quoting
of glob. Quote arguments with single quotes too. * configure: Regenerate.
-rw-r--r--ChangeLog6
-rwxr-xr-xconfigure2
-rw-r--r--configure.ac2
3 files changed, 8 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index eedccf40d..3a5e77891 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2007-03-21 Richard Sandiford <richard@codesourcery.com>
+
+ * configure.ac (TOPLEVEL_CONFIGURE_ARGUMENTS): Fix m4 quoting
+ of glob. Quote arguments with single quotes too.
+ * configure: Regenerate.
+
2007-03-12 Brooks Moses <brooks.moses@codesourcery.com>
* Makefile.def (fixincludes): Remove unneeded "missing" lines.
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'/"` ;;
diff --git a/configure.ac b/configure.ac
index 16ff8d3dd..9c38fadfd 100644
--- a/configure.ac
+++ b/configure.ac
@@ -92,7 +92,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'/"` ;;