From: Tim Kientzle Date: Mon, 9 Feb 2009 06:19:35 +0000 (-0500) Subject: Set -Wall -Werror to catch more minor build lint during development. X-Git-Tag: v2.7.0~305 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9008e2a4f0c8760da77005256523e3f4df2af73b;p=thirdparty%2Flibarchive.git Set -Wall -Werror to catch more minor build lint during development. SVN-Revision: 599 --- diff --git a/Makefile.am b/Makefile.am index c0e308f46..08ac24cac 100644 --- a/Makefile.am +++ b/Makefile.am @@ -19,6 +19,10 @@ TESTS= libarchive_test $(bsdtar_test_programs) $(bsdcpio_test_programs) TESTS_ENVIRONMENT= $(libarchive_TESTS_ENVIRONMENT) $(bsdtar_TESTS_ENVIRONMENT) $(bsdcpio_TESTS_ENVIRONMENT) # Always build and test both bsdtar and bsdcpio as part of 'distcheck' DISTCHECK_CONFIGURE_FLAGS = --enable-bsdtar --enable-bsdcpio +# Especially for early development, we want to be a little +# aggressive about diagnosing build problems; this can get +# relaxed somewhat in final shipping versions. +AM_CFLAGS=-Wall -Werror # # What to include in the distribution