From: Manfred Hollstein Date: Wed, 29 Jul 1998 23:14:42 +0000 (-0600) Subject: configure: Fix --without/--disable cases for gxx-include-dir. X-Git-Tag: prereleases/egcs-1.1-prerelease~130 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=876b20d8aa2f84be6d035f7a49b690818e46d2b5;p=thirdparty%2Fgcc.git configure: Fix --without/--disable cases for gxx-include-dir. 8 * configure: Fix --without/--disable cases for gxx-include-dir. From-SVN: r21488 --- diff --git a/configure b/configure index af334067649a..99e35e9a3644 100755 --- a/configure +++ b/configure @@ -1240,14 +1240,29 @@ EOF # provide a proper gxx_include_dir to all subdirs. # Note, if you change the default, make sure to fix both here # and in the gcc subdirectory. - if test -z "${with_gxx_include_dir}"; then + # Check whether --with-gxx-include-dir or --without-gxx-include-dir was given. + gxx_include_dir= + if test -n "${with_gxx_include_dir}"; then + case "${with_gxx_include_dir}" in + yes ) + echo "configure: error: bad value ${withval} given for g++ include directory" 1>&2 + exit 1 + ;; + no ) + ;; + * ) + gxx_include_dir=${with_gxx_include_dir} + ;; + esac + fi + if test x${gxx_include_dir} = x; then if test x${enable_version_specific_runtime_libs} = xyes; then echo gxx_include_dir = '${libsubdir}/include/g++' >> ${Makefile} else echo gxx_include_dir = '${prefix}/include/g++' >> ${Makefile} fi else - echo gxx_include_dir = ${with_gxx_include_dir} >> ${Makefile} + echo gxx_include_dir = ${gxx_include_dir} >> ${Makefile} fi # record if we want to build shared libs.