diff options
author | Miloslav Trmač <mitr@redhat.com> | 2014-07-01 19:40:47 +0200 |
---|---|---|
committer | Miloslav Trmač <mitr@redhat.com> | 2015-06-08 17:38:29 +0200 |
commit | 2a6aa19c2c774f40288bf8f6dd56d9492f1e32f8 (patch) | |
tree | 6888e8096cdf6dcceeb5255f1334356705db3ec7 | |
parent | 6f242a706f8c9694b9de00757c1bdbee8d7cdfb4 (diff) | |
download | polkit-2a6aa19c2c774f40288bf8f6dd56d9492f1e32f8.tar.gz |
s/INCLUDES/AM_CPPFLAGS/g
to silence
warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS')
https://bugs.freedesktop.org/show_bug.cgi?id=80767
-rw-r--r-- | docs/polkit/Makefile.am | 2 | ||||
-rw-r--r-- | src/examples/Makefile.am | 2 | ||||
-rw-r--r-- | src/polkit/Makefile.am | 2 | ||||
-rw-r--r-- | src/polkitagent/Makefile.am | 2 | ||||
-rw-r--r-- | src/polkitbackend/Makefile.am | 2 | ||||
-rw-r--r-- | src/programs/Makefile.am | 2 | ||||
-rw-r--r-- | test/polkit/Makefile.am | 2 | ||||
-rw-r--r-- | test/polkitbackend/Makefile.am | 2 |
8 files changed, 8 insertions, 8 deletions
diff --git a/docs/polkit/Makefile.am b/docs/polkit/Makefile.am index cd163b4..1fce92c 100644 --- a/docs/polkit/Makefile.am +++ b/docs/polkit/Makefile.am @@ -30,7 +30,7 @@ IGNORE_HFILES= \ # CFLAGS and LDFLAGS for compiling scan program. Only needed # if $(DOC_MODULE).types is non-empty. -INCLUDES = \ +AM_CPPFLAGS = \ $(GLIB_CFLAGS) \ -I$(top_srcdir)/src/polkit \ -I$(top_builddir)/src/polkit \ diff --git a/src/examples/Makefile.am b/src/examples/Makefile.am index c749c54..71c4991 100644 --- a/src/examples/Makefile.am +++ b/src/examples/Makefile.am @@ -1,7 +1,7 @@ NULL = -INCLUDES = \ +AM_CPPFLAGS = \ -I$(top_builddir)/src \ -I$(top_srcdir)/src \ -DPACKAGE_LIBEXEC_DIR=\""$(libexecdir)"\" \ diff --git a/src/polkit/Makefile.am b/src/polkit/Makefile.am index 0224b8c..51befaf 100644 --- a/src/polkit/Makefile.am +++ b/src/polkit/Makefile.am @@ -1,6 +1,6 @@ NULL = -INCLUDES = \ +AM_CPPFLAGS = \ -I$(top_builddir)/src \ -I$(top_srcdir)/src \ -DPACKAGE_LIBEXEC_DIR=\""$(libexecdir)"\" \ diff --git a/src/polkitagent/Makefile.am b/src/polkitagent/Makefile.am index bc930d2..58a55bd 100644 --- a/src/polkitagent/Makefile.am +++ b/src/polkitagent/Makefile.am @@ -1,6 +1,6 @@ NULL = -INCLUDES = \ +AM_CPPFLAGS = \ -I$(top_builddir)/src \ -I$(top_srcdir)/src \ -I$(top_builddir)/src/polkit \ diff --git a/src/polkitbackend/Makefile.am b/src/polkitbackend/Makefile.am index 52013f6..547ca82 100644 --- a/src/polkitbackend/Makefile.am +++ b/src/polkitbackend/Makefile.am @@ -2,7 +2,7 @@ NULL = BUILT_SOURCES = -INCLUDES = \ +AM_CPPFLAGS = \ -I$(top_builddir)/src \ -I$(top_srcdir)/src \ -I$(top_builddir)/src/polkit \ diff --git a/src/programs/Makefile.am b/src/programs/Makefile.am index dee7cea..880b90b 100644 --- a/src/programs/Makefile.am +++ b/src/programs/Makefile.am @@ -1,7 +1,7 @@ NULL = -INCLUDES = \ +AM_CPPFLAGS = \ -I$(top_builddir)/src \ -I$(top_srcdir)/src \ -DPACKAGE_LIBEXEC_DIR=\""$(libexecdir)"\" \ diff --git a/test/polkit/Makefile.am b/test/polkit/Makefile.am index 802f2be..1e0a23f 100644 --- a/test/polkit/Makefile.am +++ b/test/polkit/Makefile.am @@ -1,7 +1,7 @@ NULL = -INCLUDES = \ +AM_CPPFLAGS = \ -I$(top_builddir)/src \ -I$(top_srcdir)/src \ -I$(top_srcdir)/test \ diff --git a/test/polkitbackend/Makefile.am b/test/polkitbackend/Makefile.am index 632571e..8859c1f 100644 --- a/test/polkitbackend/Makefile.am +++ b/test/polkitbackend/Makefile.am @@ -1,7 +1,7 @@ NULL = -INCLUDES = \ +AM_CPPFLAGS = \ -I$(top_builddir)/src \ -I$(top_srcdir)/src \ -I$(top_srcdir)/test \ |