From caa3acd20a02cf6cb2bbd89d79492733d850ca9c Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Sat, 1 Dec 2012 19:07:02 +0200 Subject: Use AM_CPPFLAGS rather than INCLUDES in Makefile.am's --- paxlib/Makefile.am | 2 +- paxtest/Makefile.am | 2 +- rmt/Makefile.am | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/paxlib/Makefile.am b/paxlib/Makefile.am index 3e31857..6d28ffa 100644 --- a/paxlib/Makefile.am +++ b/paxlib/Makefile.am @@ -18,7 +18,7 @@ # with GNU paxutils; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -INCLUDES = -I$(top_srcdir)/gnu -I../ -I../gnu -I../lib +AM_CPPFLAGS = -I$(top_srcdir)/gnu -I../ -I../gnu -I../lib noinst_LIBRARIES = libpax.a noinst_HEADERS = tar.h paxbuf.h pax.h diff --git a/paxtest/Makefile.am b/paxtest/Makefile.am index c4efa8b..1f10545 100644 --- a/paxtest/Makefile.am +++ b/paxtest/Makefile.am @@ -22,7 +22,7 @@ noinst_PROGRAMS = paxtest paxtest_SOURCES = paxtest.c noinst_HEADERS = paxtest.h -INCLUDES = -I$(top_srcdir)/gnu -I../ -I../gnu -I../lib -I../paxlib +AM_CPPFLAGS = -I$(top_srcdir)/gnu -I../ -I../gnu -I../lib -I../paxlib LDADD = ../paxlib/libpax.a ../gnu/libgnu.a $(LIBINTL) $(LIBICONV) diff --git a/rmt/Makefile.am b/rmt/Makefile.am index 37f621a..e1db685 100644 --- a/rmt/Makefile.am +++ b/rmt/Makefile.am @@ -4,7 +4,7 @@ EXTRA_PROGRAMS = rmt rmt_SOURCES = rmt.c -INCLUDES = -I$(top_srcdir)/gnu -I../ -I../gnu -I$(top_srcdir)/lib +AM_CPPFLAGS = -I$(top_srcdir)/gnu -I../ -I../gnu -I$(top_srcdir)/lib LDADD = ../gnu/libgnu.a $(LIBINTL) -- cgit v1.2.1