diff options
author | Gaetan Nadon <memsize@videotron.ca> | 2010-02-16 10:37:21 -0500 |
---|---|---|
committer | Gaetan Nadon <memsize@videotron.ca> | 2010-02-16 10:37:21 -0500 |
commit | d2d6e4d88b62aa84e2cc9d229adf32ede81cbf5c (patch) | |
tree | d24d760226d345ea93859fd9860e892a608544d2 /src/Makefile.am | |
parent | b3807dccab5aee5455137654647c9c083addb31e (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>
Diffstat (limited to 'src/Makefile.am')
-rw-r--r-- | src/Makefile.am | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 8cd0911..97111ee 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -5,7 +5,9 @@ libfontenc_la_SOURCES = \ fontenc.c \ fontencI.h -AM_CFLAGS = @FONTENC_CFLAGS@ +AM_CFLAGS = \ + $(FONTENC_CFLAGS) \ + $(CWARNFLAGS) FONTENCDIR=@ENCODINGSDIR@ FONTENCDEFS = -DFONT_ENCODINGS_DIRECTORY=\"$(FONTENCDIR)/encodings.dir\" |