summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorRichard Sandiford <rdsandiford@googlemail.com>2007-03-21 20:11:06 +0000
committerRichard Sandiford <rdsandiford@googlemail.com>2007-03-21 20:11:06 +0000
commit52f4adec2e940d1cc53d96101f2459e8df63fd5b (patch)
tree3cc56eed50bf8eb1527a88b0adff4396b965389d /configure.ac
parentf7ddb59088918db1816ec293cbffb00b71ccaed6 (diff)
downloadcygnal-52f4adec2e940d1cc53d96101f2459e8df63fd5b.tar.gz
cygnal-52f4adec2e940d1cc53d96101f2459e8df63fd5b.tar.bz2
cygnal-52f4adec2e940d1cc53d96101f2459e8df63fd5b.zip
* configure.ac (TOPLEVEL_CONFIGURE_ARGUMENTS): Fix m4 quoting
of glob. Quote arguments with single quotes too. * configure: Regenerate.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
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'/"` ;;