[libsecret] Use AM_CPPFLAGS instead of INCLUDES



commit 46fa0810637a63e51c2b2be6ae85783abca12b07
Author: Stef Walter <stefw gnome org>
Date:   Fri Jun 21 12:51:54 2013 +0200

    Use AM_CPPFLAGS instead of INCLUDES
    
    automake 1.13 deprecates the latter

 egg/Makefile.am             |    2 +-
 egg/tests/Makefile.am       |    2 +-
 libsecret/Makefile.am       |    2 +-
 libsecret/tests/Makefile.am |    2 +-
 tool/Makefile.am            |    2 +-
 5 files changed, 5 insertions(+), 5 deletions(-)
---
diff --git a/egg/Makefile.am b/egg/Makefile.am
index 84fc104..9b8e2fa 100644
--- a/egg/Makefile.am
+++ b/egg/Makefile.am
@@ -5,7 +5,7 @@ noinst_LTLIBRARIES = \
 
 EXTRA_DIST = egg-testing.h
 
-INCLUDES = \
+AM_CPPFLAGS = \
        -I$(top_srcdir) \
        -I$(top_srcdir)/build \
        -DWITH_VALGRIND
diff --git a/egg/tests/Makefile.am b/egg/tests/Makefile.am
index 88b9e51..856659f 100644
--- a/egg/tests/Makefile.am
+++ b/egg/tests/Makefile.am
@@ -1,6 +1,6 @@
 include $(top_srcdir)/Makefile.decl
 
-INCLUDES = \
+AM_CPPFLAGS = \
        -I$(top_builddir) \
        -I$(top_srcdir) \
        -DSRCDIR="\"@abs_srcdir \"" \
diff --git a/libsecret/Makefile.am b/libsecret/Makefile.am
index fe5db67..04ef1db 100644
--- a/libsecret/Makefile.am
+++ b/libsecret/Makefile.am
@@ -2,7 +2,7 @@ include $(top_srcdir)/Makefile.decl
 
 SUBDIRS = . tests
 
-INCLUDES = \
+AM_CPPFLAGS = \
        -I$(top_srcdir) \
        -DSECRET_COMPILATION \
        $(NULL)
diff --git a/libsecret/tests/Makefile.am b/libsecret/tests/Makefile.am
index dde03fa..7f75206 100644
--- a/libsecret/tests/Makefile.am
+++ b/libsecret/tests/Makefile.am
@@ -4,7 +4,7 @@ include $(top_srcdir)/Makefile.decl
 # and I'm not sure how we can add that dependency.
 .NOTPARALLEL:
 
-INCLUDES = \
+AM_CPPFLAGS = \
        -I$(top_srcdir) \
        -I$(top_srcdir)/libsecret \
        -DSRCDIR="\"@abs_srcdir \"" \
diff --git a/tool/Makefile.am b/tool/Makefile.am
index f41e0f6..667c88c 100644
--- a/tool/Makefile.am
+++ b/tool/Makefile.am
@@ -1,6 +1,6 @@
 include $(top_srcdir)/Makefile.decl
 
-INCLUDES = \
+AM_CPPFLAGS = \
        -I$(top_srcdir) \
        -I$(top_srcdir)/libsecret \
        -DSECRET_COMPILATION \


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]