diff options
author | ian <ian@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-07-06 18:06:55 +0000 |
---|---|---|
committer | ian <ian@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-07-06 18:06:55 +0000 |
commit | 5110389de11dfd256560311b6a1eea8cc6b7de1a (patch) | |
tree | eacb5cb7277d0ef197482c4b5badca3d0c20e6e4 /configure | |
parent | 241b2d37578b449e135f6671b533bce3c4d07860 (diff) | |
download | gcc-5110389de11dfd256560311b6a1eea8cc6b7de1a.tar.gz |
* configure.ac: Add missing comma in AC_ARG_WITH(boot-libs).
* configure: Rebuild.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@149292 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/configure b/configure index a4fd8362e11..8ba3c9cfe83 100755 --- a/configure +++ b/configure @@ -982,11 +982,6 @@ Optional Packages: -with-stage1-libs=LIBS Libraries for stage1 --with-boot-ldflags=FLAGS Linker flags for stage2 and later --with-boot-libs=LIBS Libraries for stage2 and later -if test "$withval" = "no" -o "$withval" = "yes"; then - poststage1_libs= - else - poststage1_libs=$withval - fi --with-ppl=PATH Specify prefix directory for the installed PPL package Equivalent to --with-ppl-include=PATH/include plus --with-ppl-lib=PATH/lib @@ -5154,6 +5149,12 @@ fi; # Check whether --with-boot-libs or --without-boot-libs was given. if test "${with_boot_libs+set}" = set; then withval="$with_boot_libs" + if test "$withval" = "no" -o "$withval" = "yes"; then + poststage1_libs= + else + poststage1_libs=$withval + fi +else poststage1_libs=$with_host_libstdcxx fi; |