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:
parent
727793cb90
commit
0c46c5c7cf
@ -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
448
gcc/configure
vendored
File diff suppressed because it is too large
Load Diff
@ -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)
|
||||
|
||||
# -------------------------
|
||||
|
Loading…
Reference in New Issue
Block a user