summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2013-01-19 08:23:09 -0800
committerAlan Coopersmith <alan.coopersmith@oracle.com>2013-01-19 08:23:09 -0800
commitf5d1208172e965fdd7fae8927bd3e29b3cc3a975 (patch)
tree10f543d7edaaec79ead35ee478c27c0fa4830164
parent0c3518df24192f18f15ce91c2868560a5973a3dc (diff)
downloadxorg-lib-libfontenc-f5d1208172e965fdd7fae8927bd3e29b3cc3a975.tar.gz
Replace deprecated Automake INCLUDES variable with AM_CPPFLAGSbaserock/morph
Excerpt https://lists.gnu.org/archive/html/automake/2012-12/msg00038.html - Support for the long-deprecated INCLUDES variable will be removed altogether in Automake 1.14. The AM_CPPFLAGS variable should be used instead. This variable was deprecated in Automake releases prior to 1.10, which is the current minimum level required to build X. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rw-r--r--src/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index 96d0a38..e37043b 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -12,7 +12,7 @@ AM_CFLAGS = \
FONTENCDIR=@ENCODINGSDIR@
FONTENCDEFS = -DFONT_ENCODINGS_DIRECTORY=\"$(FONTENCDIR)/encodings.dir\"
-INCLUDES = -I$(top_srcdir)/include $(FONTENCDEFS)
+AM_CPPFLAGS = -I$(top_srcdir)/include $(FONTENCDEFS)
libfontenc_la_LIBADD = @FONTENC_LIBS@