From: Andrea Bolognani Date: Wed, 22 May 2019 17:15:49 +0000 (+0200) Subject: examples: Move $(WARN_CFLAGS) to $(AM_CFLAGS) X-Git-Tag: v5.5.0-rc1~378 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a5544e021fff1044e2805604c18e7e4dbbf36302;p=thirdparty%2Flibvirt.git examples: Move $(WARN_CFLAGS) to $(AM_CFLAGS) $(AM_CPPFLAGS) is for passing options to the C preprocessor, not the C compiler, and the stuff in $(WARN_CFLAGS) belongs to the latter category. Signed-off-by: Andrea Bolognani Acked-by: Michal Privoznik --- diff --git a/examples/Makefile.am b/examples/Makefile.am index 38dcb399c0..f2fef7df59 100644 --- a/examples/Makefile.am +++ b/examples/Makefile.am @@ -29,6 +29,9 @@ EXTRA_DIST = \ AM_CPPFLAGS = \ -I$(top_builddir)/include \ -I$(top_srcdir)/include \ + $(NULL) + +AM_CFLAGS = \ $(WARN_CFLAGS) \ $(NULL)