[mpich2-commits] r6637 - mpich2/trunk

goodell at mcs.anl.gov goodell at mcs.anl.gov
Mon May 10 21:58:25 CDT 2010


Author: goodell
Date: 2010-05-10 21:58:25 -0500 (Mon, 10 May 2010)
New Revision: 6637

Modified:
   mpich2/trunk/configure.in
Log:
bug fix: CFLAGS stomp CPPFLAGS in configure

was broken in r6273, prevents CPPFLAGS from being honored
(but MPICH2LIB_CPPFLAGS is a workaround).

No reviewer.

Modified: mpich2/trunk/configure.in
===================================================================
--- mpich2/trunk/configure.in	2010-05-11 02:58:22 UTC (rev 6636)
+++ mpich2/trunk/configure.in	2010-05-11 02:58:25 UTC (rev 6637)
@@ -279,7 +279,7 @@
 AC_ARG_VAR(MPICH2LIB_LDFLAGS, [extra LDFLAGS used in building MPICH2 libraries])
 AC_ARG_VAR(MPICH2LIB_LIBS, [extra LIBS used in building MPICH2 libraries])
 CFLAGS="$CFLAGS $MPICH2LIB_CFLAGS"
-CPPFLAGS="$CFLAGS $MPICH2LIB_CPPFLAGS"
+CPPFLAGS="$CPPFLAGS $MPICH2LIB_CPPFLAGS"
 CXXFLAGS="$CXXFLAGS $MPICH2LIB_CXXFLAGS"
 FFLAGS="$FFLAGS $MPICH2LIB_FFLAGS"
 F90FLAGS="$F90FLAGS $MPICH2LIB_F90FLAGS"



More information about the mpich2-commits mailing list