summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2012-12-01 19:07:02 +0200
committerSergey Poznyakoff <gray@gnu.org.ua>2012-12-01 19:07:02 +0200
commitcaa3acd20a02cf6cb2bbd89d79492733d850ca9c (patch)
treefc72c99e51f0659cf898573327d0b80a0cc05063
parentc2ae12c39ae97744f4c558dd6eee367a928a1222 (diff)
downloadpaxutils-caa3acd20a02cf6cb2bbd89d79492733d850ca9c.tar.gz
Use AM_CPPFLAGS rather than INCLUDES in Makefile.am's
-rw-r--r--paxlib/Makefile.am2
-rw-r--r--paxtest/Makefile.am2
-rw-r--r--rmt/Makefile.am2
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)