From 40d68949100d534e4dea766c7f8f60ed36aa4429 Mon Sep 17 00:00:00 2001 From: Dave Reisner Date: Tue, 18 Sep 2012 23:38:21 -0400 Subject: buildsys: eschew use of DEFS, prefer AM_CPPFLAGS This is redundant, and any usage of -D should belong to CPPFLAGS. Signed-off-by: Dave Reisner Signed-off-by: Allan McRae --- lib/libalpm/Makefile.am | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'lib/libalpm/Makefile.am') diff --git a/lib/libalpm/Makefile.am b/lib/libalpm/Makefile.am index 911e52bf..c935e2db 100644 --- a/lib/libalpm/Makefile.am +++ b/lib/libalpm/Makefile.am @@ -5,10 +5,9 @@ SUBDIRS = po lib_LTLIBRARIES = libalpm.la include_HEADERS = alpm_list.h alpm.h -DEFS = -DLOCALEDIR=\"@localedir@\" @DEFS@ - AM_CPPFLAGS = \ - -imacros $(top_builddir)/config.h + -imacros $(top_builddir)/config.h \ + -DLOCALEDIR=\"@localedir@\" AM_CFLAGS = -pedantic -D_GNU_SOURCE $(WARNING_CFLAGS) -- cgit v1.2.3-24-g4f1b