summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGaetan Nadon <memsize@videotron.ca>2010-02-09 17:46:41 -0500
committerGaetan Nadon <memsize@videotron.ca>2010-02-09 17:46:41 -0500
commitc690f3b7f85724eeb4e84c4f600a2408b00ee8af (patch)
treeacb882fbcae06ff77c44070f860865eb8fea94c6
parente87c5d8f8753a69f0b82c011c2b82bd53907bd4f (diff)
downloadxorg-lib-libXaw-c690f3b7f85724eeb4e84c4f600a2408b00ee8af.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--spec/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/Makefile.am b/spec/Makefile.am
index b09e85e..14b9f43 100644
--- a/spec/Makefile.am
+++ b/spec/Makefile.am
@@ -54,7 +54,7 @@ doc_DATA = widgets.ps widgets.index.ps widgets.txt widgets.html
imagesdir = $(docdir)/images
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 \