summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorAndrés G. Aragoneses <knocte@gmail.com>2013-06-18 11:30:31 +0200
committerAndrés G. Aragoneses <knocte@gmail.com>2013-06-18 11:30:31 +0200
commit9473dd41c1d465e0055643b91dcc1552a35b7428 (patch)
treea49cb98ebf65f6d0acd8b784cf2d2e81e931db1e /test
parentb3ce998785bc8c35df79f9473aa6a5dc2a2078e1 (diff)
downloadnautilus-9473dd41c1d465e0055643b91dcc1552a35b7428.tar.gz
build: stop using INCLUDES, deprecated by automake 1.7
We already depend on automake 1.9, so using the replacement of INCLUDES (AM_CPPFLAGS) won't hurt, especially now that it is a warning shown by default since automake 1.13, as evidenced by this build log of mine: Makefile.am: installing './INSTALL' eel/Makefile.am:5: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS') eel/Makefile.am: installing './depcomp' parallel-tests: installing './test-driver' libnautilus-extension/Makefile.am:7: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS') libnautilus-private/Makefile.am:5: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS') nautilus-sendto-extension/Makefile.am:3: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS') src/Makefile.am:13: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS') test/Makefile.am:3: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS') Signed-off-by: Alexander Larsson <alexl@redhat.com>
Diffstat (limited to 'test')
-rw-r--r--test/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Makefile.am b/test/Makefile.am
index 25d980b7c..d9ff912d3 100644
--- a/test/Makefile.am
+++ b/test/Makefile.am
@@ -1,6 +1,6 @@
NULL=
-INCLUDES =\
+AM_CPPFLAGS =\
-I$(top_srcdir) \
$(BASE_CFLAGS) \
$(COMMON_CFLAGS) \