From e0bb85c0e7178b4b0c6c7be5f6f9a9a22939367e Mon Sep 17 00:00:00 2001 From: Brian Pepple Date: Wed, 27 Mar 2013 20:01:51 -0400 Subject: [PATCH] Remove deprecated macros. --- configure.ac | 2 +- docs/Makefile.am | 2 +- extensions/Makefile.am | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/configure.ac b/configure.ac index bad1b3e..e750bac 100644 --- a/configure.ac +++ b/configure.ac @@ -27,7 +27,7 @@ AC_CONFIG_HEADER([config.h]) dnl check for tools AC_PROG_CC AC_PROG_CC_STDC -AM_PROG_MKDIR_P +AC_PROG_MKDIR_P AC_PROG_LIBTOOL diff --git a/docs/Makefile.am b/docs/Makefile.am index 7498c5d..a5fe109 100644 --- a/docs/Makefile.am +++ b/docs/Makefile.am @@ -67,7 +67,7 @@ expand_content_files= # signals and properties. # e.g. INCLUDES=-I$(top_srcdir) -I$(top_builddir) $(GTK_DEBUG_FLAGS) # e.g. GTKDOC_LIBS=$(top_builddir)/gtk/$(gtktargetlib) -INCLUDES= +AM_CPPFLAGS= GTKDOC_LIBS= # This includes the standard gtk-doc make rules, copied by gtkdocize. diff --git a/extensions/Makefile.am b/extensions/Makefile.am index d1e147d..8208a7e 100644 --- a/extensions/Makefile.am +++ b/extensions/Makefile.am @@ -49,7 +49,7 @@ XSLTPROCFLAGS = --nonet --novalid # Generated files which can be generated for all categories simultaneously _gen/all.xml: all.xml $(wildcard *.xml) - $(mkdir_p) _gen + $(MKDIR_P) _gen $(XSLTPROC) $(XSLTPROCFLAGS) --xinclude $(tools_dir)/identity.xsl \ $< > $@ @@ -105,7 +105,7 @@ _gen/interfaces-body.h: _gen/all.xml \ # although you can subdivide further if you want. _gen/channel.xml: channel.xml $(wildcard *.xml) - $(mkdir_p) _gen + $(MKDIR_P) _gen $(XSLTPROC) $(XSLTPROCFLAGS) --xinclude $(tools_dir)/identity.xsl \ $< > $@ -- 1.8.1.4