Commit 62441128 by Jim Wilson Committed by Jim Wilson

Fix consistency error reported by Yotam Medini.

	* configure: Set CXXFLAGS from CXXFLAGS, not CFLAGS.

From-SVN: r19392
parent aec373f1
Thu Apr 23 21:31:16 1998 Jim Wilson <wilson@cygnus.com>
* configure: Set CXXFLAGS from CXXFLAGS, not CFLAGS.
Wed Apr 22 12:30:10 1998 Michael Meissner <meissner@cygnus.com>
* configure.in (target_makefile_frag): If --enable-target-optspace,
......
......@@ -914,10 +914,10 @@ else
echo 'void f(){}' > conftest.c
if test -z "`${CC} -g -c conftest.c 2>&1`"; then
CFLAGS=${CFLAGS-"-g -O2"}
CXXFLAGS=${CFLAGS-"-g -O2"}
CXXFLAGS=${CXXFLAGS-"-g -O2"}
else
CFLAGS=${CFLAGS-"-O2"}
CXXFLAGS=${CFLAGS-"-O2"}
CXXFLAGS=${CXXFLAGS-"-O2"}
fi
rm -f conftest*
break
......
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