summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorSimon McVittie <simon.mcvittie@collabora.co.uk>2011-01-13 18:34:43 +0000
committerSimon McVittie <simon.mcvittie@collabora.co.uk>2011-01-14 12:45:54 +0000
commit5277d3c23287e734f057176578787a6179c4bec8 (patch)
tree133b3ca04bfeffe9dcc8f44e75298b4a648bb8bf /doc
parentb72f6e0ca00da1dd4134e6e113ea1e656df770ed (diff)
docs: use $(MKDIR_P), which we already check for in configure.in
mkdir -p isn't 100% portable, whereas $(MKDIR_P) can either be mkdir -p, install -d or (as a last resort) ./install-sh -d.
Diffstat (limited to 'doc')
-rw-r--r--doc/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/Makefile.am b/doc/Makefile.am
index 834da057..1a638254 100644
--- a/doc/Makefile.am
+++ b/doc/Makefile.am
@@ -89,7 +89,7 @@ BONUS_FILES = \
dbus-docs: $(STATIC_DOCS) $(HTML_FILES) $(MAN_HTML_FILES) $(BONUS_FILES) doxygen.stamp
$(AM_V_at)rm -rf $@
- $(AM_V_GEN)mkdir -p $@/api
+ $(AM_V_GEN)$(MKDIR_P) $@/api
$(AM_V_at)cp $(STATIC_DOCS) $@
$(AM_V_at)cp $(HTML_FILES) $@
$(AM_V_at)cp $(MAN_HTML_FILES) $@