diff options
author | Peter Hutterer <peter.hutterer@who-t.net> | 2013-08-06 13:08:13 +1000 |
---|---|---|
committer | Peter Hutterer <peter.hutterer@who-t.net> | 2013-08-06 13:08:13 +1000 |
commit | bbef8e46f2fed8f823ee4b97e96c3fcee28f3b75 (patch) | |
tree | d5065903cadb6fb6a069b293a994b1b092cebc1e /miext | |
parent | c218ba8423a73a7a643cb17789db8a1dd0901ca6 (diff) |
Replace INCLUDES with AM_CPPFLAGS
newer automake gets quite noisy about this.
hw/xfree86/ddc/Makefile.am:7: warning:
'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS')
and many more of these.
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'miext')
-rw-r--r-- | miext/damage/Makefile.am | 2 | ||||
-rw-r--r-- | miext/sync/Makefile.am | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/miext/damage/Makefile.am b/miext/damage/Makefile.am index 767a65aee..a7f432a61 100644 --- a/miext/damage/Makefile.am +++ b/miext/damage/Makefile.am @@ -2,7 +2,7 @@ noinst_LTLIBRARIES = libdamage.la AM_CFLAGS = $(DIX_CFLAGS) -INCLUDES = -I$(srcdir)/../cw +AM_CPPFLAGS = -I$(srcdir)/../cw if XORG sdk_HEADERS = damage.h damagestr.h diff --git a/miext/sync/Makefile.am b/miext/sync/Makefile.am index 36b2816d7..9aa1ba5d5 100644 --- a/miext/sync/Makefile.am +++ b/miext/sync/Makefile.am @@ -2,7 +2,7 @@ noinst_LTLIBRARIES = libsync.la AM_CFLAGS = $(DIX_CFLAGS) -INCLUDES = +AM_CPPFLAGS = if XORG sdk_HEADERS = misync.h misyncstr.h |