diff options
author | rbuj <[email protected]> | 2019-09-25 16:35:09 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2019-09-30 21:19:42 +0200 |
commit | 04657b8f6ef57fe5f6b620dbfe6db8b9a097ad9b (patch) | |
tree | 7504f2c94a6998634739e8d059176353186cfc12 /src/commands | |
parent | f25804efa335294b633759e19ae8d4964bd9614e (diff) | |
download | engrampa-04657b8f6ef57fe5f6b620dbfe6db8b9a097ad9b.tar.bz2 engrampa-04657b8f6ef57fe5f6b620dbfe6db8b9a097ad9b.tar.xz |
Use mate-compiler-flags.m4 provided by mate-common
USAGE: ./autogen.sh --enable-compile-warnings=no/minimum/yes/maximum/error@
If --enable-compile-warnings is not provided, the default is
--enable-compile-warnings=yes
Diffstat (limited to 'src/commands')
-rw-r--r-- | src/commands/Makefile.am | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/commands/Makefile.am b/src/commands/Makefile.am index 63d3d73..d423737 100644 --- a/src/commands/Makefile.am +++ b/src/commands/Makefile.am @@ -1,7 +1,12 @@ +NULL = + privexecdir = $(libexecdir)/$(PACKAGE) privexec_PROGRAMS = rpm2cpio -AM_CPPFLAGS = $(FR_CFLAGS) +AM_CPPFLAGS = \ + $(FR_CFLAGS) \ + $(WARN_CFLAGS) \ + $(NULL) rpm2cpio_SOURCES = rpm2cpio.c rpm2cpio_LDADD = $(FR_LIBS) |