summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorIan Cordasco <graffatcolmingov@gmail.com>2016-12-09 07:02:23 -0600
committerIan Cordasco <graffatcolmingov@gmail.com>2016-12-10 11:14:56 -0600
commitfd039be5f1f13cd9278d510ddf8f3ccda0e0d1ec (patch)
tree33540680408d05369af30afec30de8215d87973c /include
parentbc67233b541d9e50a71288524db71e4f663d9433 (diff)
downloadlibyaml-git-fd039be5f1f13cd9278d510ddf8f3ccda0e0d1ec.tar.gz
Use AM_CPPFLAGS since autotools deprecated INCLUDE
autoconf deprecated INCLUDE around version 2.69. No other automake file in the project uses INCLUDE (instead they use AM_CPPFLAGS) and this warning prevents the bootstrap-configure-make process from working on OSX for me. Updating the variable name in the include/Makefile.am fixes this and allows me to move along with development on OSX.
Diffstat (limited to 'include')
-rw-r--r--include/Makefile.am6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/Makefile.am b/include/Makefile.am
index f81863c..3882a2f 100644
--- a/include/Makefile.am
+++ b/include/Makefile.am
@@ -1,11 +1,11 @@
-INCLUDES = yaml.h
+AM_CPPFLAGS = yaml.h
DOXYGEN_CFG = $(top_srcdir)/doc/doxygen.cfg
-nobase_include_HEADERS = $(INCLUDES)
+nobase_include_HEADERS = $(AM_CPPFLAGS)
if DOXYGEN
-html: $(INCLUDES) $(DOXYGEN_CFG)
+html: $(AM_CPPFLAGS) $(DOXYGEN_CFG)
PACKAGE=$(PACKAGE) VERSION=$(VERSION) top_srcdir=$(top_srcdir) top_builddir=$(top_builddir) doxygen $(DOXYGEN_CFG)
endif