aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Lance Taylor <iant@google.com>2009-07-06 18:06:55 +0000
committerIan Lance Taylor <ian@gcc.gnu.org>2009-07-06 18:06:55 +0000
commite90e6bd7377e37334a4bc1ce17278025e760ec09 (patch)
treeeacb5cb7277d0ef197482c4b5badca3d0c20e6e4
parent6635078124694847c65a9533b37b096b13100fcb (diff)
downloadgcc-e90e6bd7377e37334a4bc1ce17278025e760ec09.zip
gcc-e90e6bd7377e37334a4bc1ce17278025e760ec09.tar.gz
gcc-e90e6bd7377e37334a4bc1ce17278025e760ec09.tar.bz2
configure.ac: Add missing comma in AC_ARG_WITH(boot-libs).
* configure.ac: Add missing comma in AC_ARG_WITH(boot-libs). * configure: Rebuild. From-SVN: r149292
-rw-r--r--ChangeLog5
-rwxr-xr-xconfigure11
-rw-r--r--configure.ac4
3 files changed, 13 insertions, 7 deletions
diff --git a/ChangeLog b/ChangeLog
index 6c5c50b..f5845fc 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2009-07-06 Ian Lance Taylor <iant@google.com>
+
+ * configure.ac: Add missing comma in AC_ARG_WITH(boot-libs).
+ * configure: Rebuild.
+
2009-07-01 Tobias Grosser <grosser@fim.uni-passau.de>
* MAINTAINERS: Move myself to the Graphite Reviewers.
diff --git a/configure b/configure
index a4fd836..8ba3c9cf 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;
diff --git a/configure.ac b/configure.ac
index e0bb10c..22cd976 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1468,11 +1468,11 @@ AC_SUBST(poststage1_ldflags)
# Libraries to use for stage2 and later builds. This defaults to the
# argument passed to --with-host-libstdcxx.
AC_ARG_WITH(boot-libs,
-[ --with-boot-libs=LIBS Libraries 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
+ poststage1_libs=$withval
fi],
[poststage1_libs=$with_host_libstdcxx])
AC_SUBST(poststage1_libs)