build: Show CFLAGS in the configure summary

Don't show just the maintainer flags, but the whole shebang.
This commit is contained in:
Emmanuele Bassi 2011-02-28 12:49:48 +00:00
parent d3a7b7502e
commit 23c0dac231
1 changed files with 3 additions and 1 deletions

View File

@ -1123,6 +1123,8 @@ AS_CASE([$enable_maintainer_flags],
[AC_MSG_ERROR([Invalid option for --enable-maintainer-flags])]
)
# strip leading spaces
MAINTAINER_CFLAGS=${MAINTAINER_CFLAGS/# }
AC_SUBST(MAINTAINER_CFLAGS)
dnl === Dependencies, compiler flags and linker libraries =====================
@ -1279,7 +1281,7 @@ echo ""
echo " • Compiler options:"
echo " Clutter debug level: ${enable_debug}"
echo " COGL debug level: ${enable_cogl_debug}"
echo " Compiler flags: ${MAINTAINER_CFLAGS}"
echo " Compiler flags: ${CFLAGS} ${MAINTAINER_CFLAGS}"
echo " Profiling enabled: ${enable_profile}"
echo " Enable coverage tests: ${enable_gcov}"