summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorStefan Schmidt <s.schmidt@samsung.com>2015-02-25 14:05:42 +0100
committerStefan Schmidt <s.schmidt@samsung.com>2015-02-25 16:43:35 +0100
commitc5879dab4d0a1e6d0b6e0510e28ddd933ec207fb (patch)
tree2f2799abda669923bac4a4b872a53c7a62ba3054 /doc
parent1e83761810e337eac94bb94f39053f511b0a1083 (diff)
downloadefl-c5879dab4d0a1e6d0b6e0510e28ddd933ec207fb.tar.gz
build: Unify use of $(MKDIR_P) for creating a dir within the build system
While we used different variation of mkdir -p all over we also had spots where we did not use the option. This is one step in trying to make our build system ready for parallel install. Using something like -j 10 even for the install should help to speed up our jenkins jobs as well as distcheck.
Diffstat (limited to 'doc')
-rw-r--r--doc/Makefile.am2
-rw-r--r--doc/previews/Makefile.am4
2 files changed, 3 insertions, 3 deletions
diff --git a/doc/Makefile.am b/doc/Makefile.am
index 06712a98eb..2765bb18ef 100644
--- a/doc/Makefile.am
+++ b/doc/Makefile.am
@@ -22,7 +22,7 @@ doc: all previews-build previews-data
cp $(srcdir)/img/* html/
cp $(srcdir)/img/*.eps latex/
rm -rf $(PACKAGE_DOCNAME).tar*
- mkdir -p $(PACKAGE_DOCNAME)/doc
+ $(MKDIR_P) $(PACKAGE_DOCNAME)/doc
cp -R html/ latex/ man/ $(PACKAGE_DOCNAME)/doc
tar cf $(PACKAGE_DOCNAME).tar $(PACKAGE_DOCNAME)/
bzip2 -9 $(PACKAGE_DOCNAME).tar
diff --git a/doc/previews/Makefile.am b/doc/previews/Makefile.am
index 230365634d..e00f5ee159 100644
--- a/doc/previews/Makefile.am
+++ b/doc/previews/Makefile.am
@@ -44,8 +44,8 @@ PREVIEWS = blend blur bump curve grow mask transform \
example_1 padding
previews-data: preview_text_filter
- $(mkdir_p) $(DATADIR)
- $(mkdir_p) $(HTMLDIR)
+ $(MKDIR_P) $(DATADIR)
+ $(MKDIR_P) $(HTMLDIR)
@for a in $(PREVIEWS) ; do \
echo " GEN filter_$${a}.png" ; \
FONT="Sans" ; \