diff options
author | Gaetan Nadon <memsize@videotron.ca> | 2010-02-11 10:08:06 -0500 |
---|---|---|
committer | Gaetan Nadon <memsize@videotron.ca> | 2010-02-11 10:08:06 -0500 |
commit | 1ca676f3939f1c7430d412294034110690205834 (patch) | |
tree | 368fb957901a8a932daa08cb375e2086cc781f88 | |
parent | eaaec4ecdd160d3adf8a4d0c1049e6791debb0b3 (diff) |
config: move CWARNFLAGS from configure.ac to Makefile.am
Compiler warning flags should be explicitly set in the makefile
rather than being merged with other packages compiler flags.
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
-rw-r--r-- | Makefile.am | 2 | ||||
-rw-r--r-- | configure.ac | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am index 568f493..234f627 100644 --- a/Makefile.am +++ b/Makefile.am @@ -21,7 +21,7 @@ bin_PROGRAMS = fstobdf -AM_CFLAGS = $(FSTOBDF_CFLAGS) +AM_CFLAGS = $(FSTOBDF_CFLAGS) $(CWARNFLAGS) fstobdf_LDADD = $(FSTOBDF_LIBS) fstobdf_SOURCES = \ diff --git a/configure.ac b/configure.ac index 879e357..53bda51 100644 --- a/configure.ac +++ b/configure.ac @@ -40,7 +40,6 @@ AC_PROG_INSTALL # Checks for pkg-config packages PKG_CHECK_MODULES(FSTOBDF, x11 libfs) -FSTOBDF_CFLAGS="$CWARNFLAGS $FSTOBDF_CFLAGS" AC_SUBST(FSTOBDF_CFLAGS) AC_SUBST(FSTOBDF_LIBS) |