[brasero] build: use AM_CPPFLAGS instead of INCLUDES
- From: Joshua Lock <joshuagl src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [brasero] build: use AM_CPPFLAGS instead of INCLUDES
- Date: Thu, 22 Aug 2013 16:14:32 +0000 (UTC)
commit f4716732028cd64e106d4f39902df814ae8e5540
Author: Jose Rostagno <joserostagno hotmail com>
Date: Thu Aug 22 16:39:18 2013 +0100
build: use AM_CPPFLAGS instead of INCLUDES
Resolves warnings with new autotools
https://bugzilla.gnome.org/show_bug.cgi?id=700481
docs/reference/libbrasero-burn/Makefile.am | 4 ++--
docs/reference/libbrasero-media/Makefile.am | 4 ++--
libbrasero-burn/Makefile.am | 2 +-
libbrasero-media/Makefile.am | 2 +-
libbrasero-utils/Makefile.am | 2 +-
nautilus/Makefile.am | 2 +-
plugins/audio2cue/Makefile.am | 2 +-
plugins/cdrdao/Makefile.am | 2 +-
plugins/cdrkit/Makefile.am | 2 +-
plugins/cdrtools/Makefile.am | 2 +-
plugins/checksum/Makefile.am | 2 +-
plugins/dvdauthor/Makefile.am | 2 +-
plugins/dvdcss/Makefile.am | 2 +-
plugins/growisofs/Makefile.am | 2 +-
plugins/libburnia/Makefile.am | 2 +-
plugins/local-track/Makefile.am | 2 +-
plugins/transcode/Makefile.am | 2 +-
plugins/vcdimager/Makefile.am | 2 +-
src/Makefile.am | 2 +-
19 files changed, 21 insertions(+), 21 deletions(-)
---
diff --git a/docs/reference/libbrasero-burn/Makefile.am b/docs/reference/libbrasero-burn/Makefile.am
index 130efa3..2636c4b 100644
--- a/docs/reference/libbrasero-burn/Makefile.am
+++ b/docs/reference/libbrasero-burn/Makefile.am
@@ -105,9 +105,9 @@ expand_content_files=
# CFLAGS and LDFLAGS for compiling gtkdoc-scangobj with your library.
# Only needed if you are using gtkdoc-scangobj to dynamically query widget
# signals and properties.
-# e.g. INCLUDES=-I$(top_srcdir) -I$(top_builddir) $(GTK_DEBUG_FLAGS)
+# e.g. AM_CPPFLAGS=-I$(top_srcdir) -I$(top_builddir) $(GTK_DEBUG_FLAGS)
# e.g. GTKDOC_LIBS=$(top_builddir)/gtk/$(gtktargetlib)
-INCLUDES= \
+AM_CPPFLAGS= \
-I$(top_srcdir) \
-I$(top_builddir) \
$(BRASERO_GLIB_CFLAGS) \
diff --git a/docs/reference/libbrasero-media/Makefile.am b/docs/reference/libbrasero-media/Makefile.am
index 512a4c8..6c25dbb 100644
--- a/docs/reference/libbrasero-media/Makefile.am
+++ b/docs/reference/libbrasero-media/Makefile.am
@@ -102,9 +102,9 @@ expand_content_files=
# CFLAGS and LDFLAGS for compiling gtkdoc-scangobj with your library.
# Only needed if you are using gtkdoc-scangobj to dynamically query widget
# signals and properties.
-# e.g. INCLUDES=-I$(top_srcdir) -I$(top_builddir) $(GTK_DEBUG_FLAGS)
+# e.g. AM_CPPFLAGS=-I$(top_srcdir) -I$(top_builddir) $(GTK_DEBUG_FLAGS)
# e.g. GTKDOC_LIBS=$(top_builddir)/gtk/$(gtktargetlib)
-INCLUDES= \
+AM_CPPFLAGS= \
-I$(top_srcdir) \
-I$(top_builddir) \
$(BRASERO_GLIB_CFLAGS) \
diff --git a/libbrasero-burn/Makefile.am b/libbrasero-burn/Makefile.am
index 3c723ce..38e21af 100644
--- a/libbrasero-burn/Makefile.am
+++ b/libbrasero-burn/Makefile.am
@@ -1,4 +1,4 @@
-INCLUDES = \
+AM_CPPFLAGS = \
-I$(top_srcdir) \
-I$(top_builddir) \
-I$(top_srcdir)/libbrasero-utils/ \
diff --git a/libbrasero-media/Makefile.am b/libbrasero-media/Makefile.am
index 22307b8..4898c59 100644
--- a/libbrasero-media/Makefile.am
+++ b/libbrasero-media/Makefile.am
@@ -1,5 +1,5 @@
-INCLUDES = \
+AM_CPPFLAGS = \
-I$(top_srcdir) \
-I$(top_builddir) \
-DBRASERO_LOCALE_DIR=\""$(prefix)/$(DATADIRNAME)/locale"\" \
diff --git a/libbrasero-utils/Makefile.am b/libbrasero-utils/Makefile.am
index fe03a8f..9afc146 100644
--- a/libbrasero-utils/Makefile.am
+++ b/libbrasero-utils/Makefile.am
@@ -1,5 +1,5 @@
-INCLUDES = \
+AM_CPPFLAGS = \
-I$(top_srcdir) \
-I$(top_builddir) \
-DBRASERO_LOCALE_DIR=\""$(prefix)/$(DATADIRNAME)/locale"\" \
diff --git a/nautilus/Makefile.am b/nautilus/Makefile.am
index aee736a..72eed5a 100644
--- a/nautilus/Makefile.am
+++ b/nautilus/Makefile.am
@@ -1,6 +1,6 @@
module_flags = -avoid-version -module
-INCLUDES = \
+AM_CPPFLAGS = \
-I$(top_srcdir)/libbrasero-utils/ \
-I$(top_builddir)/libbrasero-utils/ \
-I$(top_srcdir)/libbrasero-media/ \
diff --git a/plugins/audio2cue/Makefile.am b/plugins/audio2cue/Makefile.am
index ebe6caf..e2d1413 100644
--- a/plugins/audio2cue/Makefile.am
+++ b/plugins/audio2cue/Makefile.am
@@ -1,5 +1,5 @@
-INCLUDES = \
+AM_CPPFLAGS = \
-I$(top_srcdir) \
-I$(top_srcdir)/libbrasero-media/ \
-I$(top_builddir)/libbrasero-media/ \
diff --git a/plugins/cdrdao/Makefile.am b/plugins/cdrdao/Makefile.am
index 86024fa..4e97524 100644
--- a/plugins/cdrdao/Makefile.am
+++ b/plugins/cdrdao/Makefile.am
@@ -1,5 +1,5 @@
-INCLUDES = \
+AM_CPPFLAGS = \
-I$(top_srcdir) \
-I$(top_srcdir)/libbrasero-media/ \
-I$(top_builddir)/libbrasero-media/ \
diff --git a/plugins/cdrkit/Makefile.am b/plugins/cdrkit/Makefile.am
index 4359720..9b90faa 100644
--- a/plugins/cdrkit/Makefile.am
+++ b/plugins/cdrkit/Makefile.am
@@ -1,5 +1,5 @@
-INCLUDES = \
+AM_CPPFLAGS = \
-I$(top_srcdir) \
-I$(top_srcdir)/libbrasero-media/ \
-I$(top_builddir)/libbrasero-media/ \
diff --git a/plugins/cdrtools/Makefile.am b/plugins/cdrtools/Makefile.am
index d8b4650..7b1deca 100644
--- a/plugins/cdrtools/Makefile.am
+++ b/plugins/cdrtools/Makefile.am
@@ -1,5 +1,5 @@
-INCLUDES = \
+AM_CPPFLAGS = \
-I$(top_srcdir) \
-I$(top_srcdir)/libbrasero-media/ \
-I$(top_builddir)/libbrasero-media/ \
diff --git a/plugins/checksum/Makefile.am b/plugins/checksum/Makefile.am
index 4acef8c..36a90fe 100644
--- a/plugins/checksum/Makefile.am
+++ b/plugins/checksum/Makefile.am
@@ -1,5 +1,5 @@
-INCLUDES = \
+AM_CPPFLAGS = \
-I$(top_srcdir) \
-I$(top_srcdir)/libbrasero-media/ \
-I$(top_builddir)/libbrasero-media/ \
diff --git a/plugins/dvdauthor/Makefile.am b/plugins/dvdauthor/Makefile.am
index 0fcd411..4319407 100644
--- a/plugins/dvdauthor/Makefile.am
+++ b/plugins/dvdauthor/Makefile.am
@@ -1,5 +1,5 @@
-INCLUDES = \
+AM_CPPFLAGS = \
-I$(top_srcdir) \
-I$(top_srcdir)/libbrasero-media/ \
-I$(top_builddir)/libbrasero-media/ \
diff --git a/plugins/dvdcss/Makefile.am b/plugins/dvdcss/Makefile.am
index 467a5e1..7ee8f99 100644
--- a/plugins/dvdcss/Makefile.am
+++ b/plugins/dvdcss/Makefile.am
@@ -1,4 +1,4 @@
-INCLUDES = \
+AM_CPPFLAGS = \
-I$(top_srcdir) \
-I$(top_srcdir)/libbrasero-media/ \
-I$(top_builddir)/libbrasero-media/ \
diff --git a/plugins/growisofs/Makefile.am b/plugins/growisofs/Makefile.am
index 99d3efd..4c83229 100644
--- a/plugins/growisofs/Makefile.am
+++ b/plugins/growisofs/Makefile.am
@@ -1,5 +1,5 @@
-INCLUDES = \
+AM_CPPFLAGS = \
-I$(top_srcdir) \
-I$(top_srcdir)/libbrasero-media/ \
-I$(top_builddir)/libbrasero-media/ \
diff --git a/plugins/libburnia/Makefile.am b/plugins/libburnia/Makefile.am
index b4062a2..65ba93b 100644
--- a/plugins/libburnia/Makefile.am
+++ b/plugins/libburnia/Makefile.am
@@ -1,5 +1,5 @@
-INCLUDES = \
+AM_CPPFLAGS = \
-I$(top_srcdir) \
-I$(top_srcdir)/libbrasero-media/ \
-I$(top_builddir)/libbrasero-media/ \
diff --git a/plugins/local-track/Makefile.am b/plugins/local-track/Makefile.am
index b553220..ece7bbb 100644
--- a/plugins/local-track/Makefile.am
+++ b/plugins/local-track/Makefile.am
@@ -1,5 +1,5 @@
-INCLUDES = \
+AM_CPPFLAGS = \
-I$(top_srcdir) \
-I$(top_srcdir)/libbrasero-media/ \
-I$(top_builddir)/libbrasero-media/ \
diff --git a/plugins/transcode/Makefile.am b/plugins/transcode/Makefile.am
index 4cdf5ec..665d91e 100644
--- a/plugins/transcode/Makefile.am
+++ b/plugins/transcode/Makefile.am
@@ -1,5 +1,5 @@
-INCLUDES = \
+AM_CPPFLAGS = \
-I$(top_srcdir) \
-I$(top_srcdir)/libbrasero-media/ \
-I$(top_builddir)/libbrasero-media/ \
diff --git a/plugins/vcdimager/Makefile.am b/plugins/vcdimager/Makefile.am
index b265585..bee2834 100644
--- a/plugins/vcdimager/Makefile.am
+++ b/plugins/vcdimager/Makefile.am
@@ -1,5 +1,5 @@
-INCLUDES = \
+AM_CPPFLAGS = \
-I$(top_srcdir) \
-I$(top_srcdir)/libbrasero-media/ \
-I$(top_builddir)/libbrasero-media/ \
diff --git a/src/Makefile.am b/src/Makefile.am
index 0de9c2f..0581791 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -1,5 +1,5 @@
-INCLUDES = \
+AM_CPPFLAGS = \
-I$(top_srcdir) \
-I$(top_srcdir)/libbrasero-utils/ \
-I$(top_builddir)/libbrasero-utils/ \
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]