configure.in (intermodule): Make switch test more portable.

* configure.in (intermodule): Make switch test more portable.
* configure: Regenerate.

From-SVN: r70346
This commit is contained in:
Kelley Cook 2003-08-12 01:21:33 +00:00 committed by R. Kelley Cook
parent 727793cb90
commit 0c46c5c7cf
3 changed files with 235 additions and 227 deletions

View File

@ -1,3 +1,8 @@
2003-08-11 Kelley Cook <kelleycook@wideopenwest.com>
* configure.in (intermodule): Make switch test more portable.
* configure: Regenerate.
2003-08-11 Kelley Cook <kelleycook@wideopenwest.com>
* Makefile.in (cleanstrap): Pass BOOT_CFLAGS to bootstrap.

448
gcc/configure vendored

File diff suppressed because it is too large Load Diff

View File

@ -579,10 +579,11 @@ AC_SUBST(CROSS_SYSTEM_HEADER_DIR)
# Build with intermodule optimisations
AC_ARG_ENABLE(intermodule,
[ --enable-intermodule build the compiler in one step],
[case "${enable_intermodule}" in
yes) onestep=-onestep : ;;
*) onestep= : ;;
esac])
[case ${enable_intermodule} in
yes) onestep="-onestep";;
*) onestep="";;
esac],
[onestep=""])
AC_SUBST(onestep)
# -------------------------