diff options
author | Andrés G. Aragoneses <knocte@gmail.com> | 2013-06-18 11:30:31 +0200 |
---|---|---|
committer | Andrés G. Aragoneses <knocte@gmail.com> | 2013-06-18 11:30:31 +0200 |
commit | 9473dd41c1d465e0055643b91dcc1552a35b7428 (patch) | |
tree | a49cb98ebf65f6d0acd8b784cf2d2e81e931db1e /eel | |
parent | b3ce998785bc8c35df79f9473aa6a5dc2a2078e1 (diff) | |
download | nautilus-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 'eel')
-rw-r--r-- | eel/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eel/Makefile.am b/eel/Makefile.am index c14ccc536..2b650979a 100644 --- a/eel/Makefile.am +++ b/eel/Makefile.am @@ -2,7 +2,7 @@ NULL= noinst_LTLIBRARIES=libeel-2.la -INCLUDES = \ +AM_CPPFLAGS = \ -DG_LOG_DOMAIN=\"Eel\" \ -I$(top_srcdir) \ -I$(top_builddir) \ |