diff options
author | Alexandre Oliva <aoliva@redhat.com> | 2009-09-04 18:58:34 +0000 |
---|---|---|
committer | Alexandre Oliva <aoliva@gcc.gnu.org> | 2009-09-04 18:58:34 +0000 |
commit | 5646b7b97e101bed5ad1a6d463f9dd8283c43072 (patch) | |
tree | eb54275b92f1e90ba5f906cb2486833b8759f98a /configure.ac | |
parent | b98a26e6d0f25a5c1893a8ed43a905242114662e (diff) | |
download | gcc-5646b7b97e101bed5ad1a6d463f9dd8283c43072.zip gcc-5646b7b97e101bed5ad1a6d463f9dd8283c43072.tar.gz gcc-5646b7b97e101bed5ad1a6d463f9dd8283c43072.tar.bz2 |
configure.ac (with-build-config): Document.
* configure.ac (with-build-config): Document. Handle without.
Handle missing argument.
* configure: Rebuilt.
From-SVN: r151435
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index caff7e5..592a8e3 100644 --- a/configure.ac +++ b/configure.ac @@ -2471,6 +2471,15 @@ case $enable_bootstrap in esac AC_MSG_CHECKING(for default BUILD_CONFIG) + +AC_ARG_WITH([build-config], + [--with-build-config='NAME NAME2...' + Use config/NAME.mk build configuration], + [case $with_build_config in + yes) with_build_config= ;; + no) with_build_config= BUILD_CONFIG= ;; + esac]) + if test "x${with_build_config}" != x; then BUILD_CONFIG=$with_build_config else |