jberry 2003/02/25 11:37:08
Modified: c/samples runConfigure
Log:
tests/runConfigure
Revision Changes Path
1.37 +6 -2 xml-xerces/c/samples/runConfigure
Index: runConfigure
===================================================================
RCS file: /home/cvs/xml-xerces/c/samples/runConfigure,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -r1.36 -r1.37
--- runConfigure 2 Dec 2002 20:07:10 -0000 1.36
+++ runConfigure 25 Feb 2003 19:37:07 -0000 1.37
@@ -418,6 +418,10 @@
xlC* | xlc* | g++ | c++ | cc | CC | aCC | icc | ICC | cxx | ecc)
;;
+ '')
+ echo "C++ compiler not specified...we'll assume that configure will find
it..."
+ ;;
+
*)
echo "I do not recognize the C++ compiler '$cppcompiler'. Continuing anyway
..."
;;
@@ -442,7 +446,7 @@
export CFLAGS
# gcc crashes if optimisation is turned on in a Tru64 environment
-if [ $platform = "tru64" -a $CXX = "g++" ]; then
+if test "$platform" = "tru64" -a "$CXX" = "g++"; then
CXXFLAGS=`echo $CXXFLAGS | sed -e 's/-O[0-9]*//g'`
CFLAGS=`echo $CFLAGS | sed -e 's/-O[0-9]*//g'`
export CXXFLAGS CFLAGS
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]