summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGaetan Nadon <memsize@videotron.ca>2010-02-09 17:39:46 -0500
committerGaetan Nadon <memsize@videotron.ca>2010-02-09 17:39:46 -0500
commit98f205119011c016ec902c69d882a26dd7185a43 (patch)
treeb8a1b7127a2525a57cfde9835f1296b0c259cac5
parentc22a324b4c1e1ac38b1c04656ecdcf9127343e8d (diff)
downloadxorg-lib-libSM-98f205119011c016ec902c69d882a26dd7185a43.tar.gz
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 <memsize@videotron.ca>
-rw-r--r--doc/Makefile.am2
1 files changed, 1 insertions, 1 deletions
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 \