diff options
author | Gaetan Nadon <memsize@videotron.ca> | 2010-02-09 17:27:08 -0500 |
---|---|---|
committer | Gaetan Nadon <memsize@videotron.ca> | 2010-02-09 17:27:08 -0500 |
commit | 7277a18cda9f5a6807d11cf4ceb9449b1c302c18 (patch) | |
tree | 3c62719efa2e6648c6ca9e47dbe41f88c4482e0f | |
parent | e66eda95b520727969d721416d4ea49b54ef2b03 (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.in | 2 |
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 \ |