From dfa0011826d3304b8b63acef963237fe7a1dfe7a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20P=2E=20Berrang=C3=A9?= Date: Tue, 2 Apr 2019 11:00:13 +0100 Subject: [PATCH] examples: enable all compiler warnings MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Now that all the examples are warning free, keep it that way by enabling all the normal compiler warning flags. Reviewed-by: Ján Tomko Signed-off-by: Daniel P. Berrangé --- examples/Makefile.am | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/examples/Makefile.am b/examples/Makefile.am index b590a148ce..ee7d3e6b2c 100644 --- a/examples/Makefile.am +++ b/examples/Makefile.am @@ -28,7 +28,8 @@ EXTRA_DIST = \ AM_CPPFLAGS = \ - -I$(top_builddir)/include -I$(top_srcdir)/include -I$(top_srcdir) + -I$(top_builddir)/include -I$(top_srcdir)/include -I$(top_srcdir) \ + $(WARN_CFLAGS) LDADD = $(STATIC_BINARIES) $(WARN_CFLAGS) \ $(top_builddir)/src/libvirt.la \ $(top_builddir)/src/libvirt-admin.la -- GitLab