diff options
author | Alexandre Oliva <aoliva@redhat.com> | 2007-02-18 22:45:12 +0000 |
---|---|---|
committer | Alexandre Oliva <aoliva@gcc.gnu.org> | 2007-02-18 22:45:12 +0000 |
commit | b2eaac4a51bba9fc502e849c4147c5b5d95c8ffc (patch) | |
tree | 3d2a3a0dd53b4809449d9b1bbd29d43cbee351f5 /configure | |
parent | 8800a9b349e790a867c3dd1a7a7807929e97e400 (diff) | |
download | gcc-b2eaac4a51bba9fc502e849c4147c5b5d95c8ffc.tar.gz |
configure.ac: Drop multiple occurrences of --enable-languages, and fix its quoting.
* configure.ac: Drop multiple occurrences of --enable-languages,
and fix its quoting.
* configure: Rebuilt.
From-SVN: r122107
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure index 6bdaf81c304..a014c093134 100755 --- a/configure +++ b/configure @@ -4675,7 +4675,7 @@ Supported languages are: ${potential_languages}" >&2;} fi - ac_configure_args=`echo " $ac_configure_args" | sed -e 's/ --enable-languages=[^ ]*//' -e 's/$/ --enable-languages='"$enable_languages"/ ` + ac_configure_args=`echo " $ac_configure_args" | sed -e "s/ '--enable-languages=[^ ]*'//g" -e "s/$/ '--enable-languages="$enable_languages"'/" ` fi # Handle --disable-<component> generically. |