From 98f205119011c016ec902c69d882a26dd7185a43 Mon Sep 17 00:00:00 2001 From: Gaetan Nadon Date: Tue, 9 Feb 2010 17:39:46 -0500 Subject: doc: use $(mkdir_p) rather than $(MKDIR_P) due to automake 1.9.6 $(MKDIR_P) is not defined in automake 1.9. Signed-off-by: Gaetan Nadon --- doc/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/Makefile.am b/doc/Makefile.am index ef42872..d648934 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -36,7 +36,7 @@ CLEANFILES = $(doc_DATA) MOSTLYCLEANFILES = index.* install-data-local: - test -z "$(imagesdir)" || $(MKDIR_P) "$(DESTDIR)$(imagesdir)" + test -z "$(imagesdir)" || $(mkdir_p) "$(DESTDIR)$(imagesdir)" @d="$(srcdir)/images/"; \ list=`ls $$d`; \ for p in $$list; do \ -- cgit v1.2.1