aboutsummaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorRichard Sandiford <richard@codesourcery.com>2007-03-21 20:09:15 +0000
committerRichard Sandiford <rsandifo@gcc.gnu.org>2007-03-21 20:09:15 +0000
commit8c79f3c49dbf68cc66d0f1f9353e0b162fb55dc8 (patch)
treefeaf56adf3851705f2004093fef9b5e85de76d6a /configure
parent2ada56f5a04e2c939901d47ef71abf16810cdd78 (diff)
downloadgcc-8c79f3c49dbf68cc66d0f1f9353e0b162fb55dc8.zip
gcc-8c79f3c49dbf68cc66d0f1f9353e0b162fb55dc8.tar.gz
gcc-8c79f3c49dbf68cc66d0f1f9353e0b162fb55dc8.tar.bz2
configure.ac (TOPLEVEL_CONFIGURE_ARGUMENTS): Fix m4 quoting of glob.
* configure.ac (TOPLEVEL_CONFIGURE_ARGUMENTS): Fix m4 quoting of glob. Quote arguments with single quotes too. * configure: Regenerate. From-SVN: r123117
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 0554463..6e989c2 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'/"` ;;