diff options
author | Javier Jardón <jjardon@gnome.org> | 2011-05-16 12:47:17 +0100 |
---|---|---|
committer | Javier Jardón <jjardon@gnome.org> | 2011-07-06 15:58:32 +0100 |
commit | 32e00d1f43e1ff65f77b3c6d904f93510acbf89e (patch) | |
tree | e333b11c9241cf33a17ae455387ef282e32781de /modules | |
parent | 30930e643f99ee1ae05e5eeed2893b00a10fd2d7 (diff) | |
download | gtk+-32e00d1f43e1ff65f77b3c6d904f93510acbf89e.tar.gz |
Use AM_CPPFLAGS instead the obsolete INCLUDES
Diffstat (limited to 'modules')
-rw-r--r-- | modules/engines/ms-windows/Makefile.am | 2 | ||||
-rw-r--r-- | modules/engines/pixbuf/Makefile.am | 2 | ||||
-rw-r--r-- | modules/printbackends/cups/Makefile.am | 2 | ||||
-rw-r--r-- | modules/printbackends/lpr/Makefile.am | 2 | ||||
-rw-r--r-- | modules/printbackends/papi/Makefile.am | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/modules/engines/ms-windows/Makefile.am b/modules/engines/ms-windows/Makefile.am index de4562ba7b..fd0a40e480 100644 --- a/modules/engines/ms-windows/Makefile.am +++ b/modules/engines/ms-windows/Makefile.am @@ -4,7 +4,7 @@ SUBDIRS=Theme EXTRA_DIST += Makefile.msc -INCLUDES = \ +AM_CPPFLAGS = \ -I$(top_srcdir) \ -I$(top_srcdir)/gdk \ -I$(top_builddir)/gdk \ diff --git a/modules/engines/pixbuf/Makefile.am b/modules/engines/pixbuf/Makefile.am index 2a90796b74..59a280c707 100644 --- a/modules/engines/pixbuf/Makefile.am +++ b/modules/engines/pixbuf/Makefile.am @@ -4,7 +4,7 @@ if PLATFORM_WIN32 no_undefined = -no-undefined endif -INCLUDES = \ +AM_CPPFLAGS = \ -I$(top_srcdir) \ -I$(top_srcdir)/gdk \ -I$(top_builddir)/gdk \ diff --git a/modules/printbackends/cups/Makefile.am b/modules/printbackends/cups/Makefile.am index 665657a4c1..f90a28f73b 100644 --- a/modules/printbackends/cups/Makefile.am +++ b/modules/printbackends/cups/Makefile.am @@ -4,7 +4,7 @@ if PLATFORM_WIN32 no_undefined = -no-undefined endif -INCLUDES = \ +AM_CPPFLAGS = \ -I$(top_srcdir) \ -I$(top_srcdir)/gtk \ -I$(top_builddir)/gtk \ diff --git a/modules/printbackends/lpr/Makefile.am b/modules/printbackends/lpr/Makefile.am index 38236525b7..ff51351d3d 100644 --- a/modules/printbackends/lpr/Makefile.am +++ b/modules/printbackends/lpr/Makefile.am @@ -4,7 +4,7 @@ if PLATFORM_WIN32 no_undefined = -no-undefined endif -INCLUDES = \ +AM_CPPFLAGS = \ -I$(top_srcdir) \ -I$(top_srcdir)/gtk \ -I$(top_builddir)/gtk \ diff --git a/modules/printbackends/papi/Makefile.am b/modules/printbackends/papi/Makefile.am index 9d7109d0c3..5388baa3a3 100644 --- a/modules/printbackends/papi/Makefile.am +++ b/modules/printbackends/papi/Makefile.am @@ -2,7 +2,7 @@ if OS_WIN32 no_undefined = -no-undefined endif -INCLUDES = \ +AM_CPPFLAGS = \ -I$(top_srcdir) \ -I$(top_srcdir)/gtk \ -I$(top_builddir)/gtk \ |