diff options
author | Max Kellermann <max@duempel.org> | 2014-01-26 12:30:36 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-01-26 12:32:51 +0100 |
commit | 412d1b0a01d37784b28ff39754dce64c9f5efca6 (patch) | |
tree | 6b8f6d3c8643a61d7000201f8db174b5220e7785 | |
parent | 642be502c0e4767568347ff82cde561b40f93d25 (diff) | |
download | mpd-412d1b0a01d37784b28ff39754dce64c9f5efca6.tar.gz mpd-412d1b0a01d37784b28ff39754dce64c9f5efca6.tar.xz mpd-412d1b0a01d37784b28ff39754dce64c9f5efca6.zip |
Makefile.am: use $(MKDIR_P)
Diffstat (limited to '')
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index ee4116211..21af71d0d 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1772,7 +1772,7 @@ DOCBOOK_HTML = endif doc/api/html/index.html: doc/doxygen.conf - @mkdir -p $(@D) + @$(MKDIR_P) $(@D) $(DOXYGEN) $< all-local: $(DOCBOOK_HTML) doc/api/html/index.html |