diff options
author | Richard Sandiford <rsandifo@nildram.co.uk> | 2007-03-21 20:11:06 +0000 |
---|---|---|
committer | Richard Sandiford <rsandifo@nildram.co.uk> | 2007-03-21 20:11:06 +0000 |
commit | dc7532fe3aaa8d8a0844708e87fecad2fe341d47 (patch) | |
tree | 741b846452e2724e2a55c57c4cc82b4a1c7fce56 /configure.ac | |
parent | 383457c941c45c51493ec5816db4c14580589025 (diff) | |
download | gdb-dc7532fe3aaa8d8a0844708e87fecad2fe341d47.tar.gz |
* 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.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 16ff8d3ddf1..9c38fadfd94 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'/"` ;; |