Commit 0c46c5c7 by Kelley Cook Committed by R. Kelley Cook

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

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

From-SVN: r70346
parent 727793cb
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.
(restrap): Likewise.
......
......@@ -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)
# -------------------------
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment