Procházet zdrojové kódy

configure.ac: add --coverage to CFLAGS instead of CPPFLAGS

Nathalie Furmento před 12 roky
rodič
revize
8cc33523e2
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      configure.ac

+ 1 - 1
configure.ac

@@ -875,7 +875,7 @@ AC_MSG_RESULT($enable_coverage)
 AC_SUBST(COVERAGE, $enable_coverage)
 AM_CONDITIONAL(STARPU_COVERAGE_ENABLED, [test "x$enable_coverage" = "xyes"])
 if test x$enable_coverage = xyes; then
-	CPPFLAGS="${CPPFLAGS} --coverage"
+	CFLAGS="${CFLAGS} --coverage"
 	LDFLAGS="${LDFLAGS} --coverage"
 fi