summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGaetan Nadon <memsize@videotron.ca>2010-02-09 17:27:08 -0500
committerGaetan Nadon <memsize@videotron.ca>2010-02-09 17:27:08 -0500
commit7277a18cda9f5a6807d11cf4ceb9449b1c302c18 (patch)
tree3c62719efa2e6648c6ca9e47dbe41f88c4482e0f
parente66eda95b520727969d721416d4ea49b54ef2b03 (diff)
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--specs/troffrules.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/specs/troffrules.in b/specs/troffrules.in
index af891209..93c56801 100644
--- a/specs/troffrules.in
+++ b/specs/troffrules.in
@@ -44,7 +44,7 @@ MOSTLYCLEANFILES = index.*
# Install html generated images for specs
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 \