summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMichael Kerrisk <mtk.manpages@gmail.com>2012-04-17 04:34:49 +1200
committerMichael Kerrisk <mtk.manpages@gmail.com>2012-04-17 23:09:08 +1200
commit6f92d1d707ab8be3ba44e4cc6d15ab93ba57958f (patch)
tree07f8271057a1c5decb702eb6f9fb350bcdfd48df /Makefile
parent50b5741877349c7b3124d48a2d0cde0a91e84d09 (diff)
Makefile: use "mkdir -p" instead of "-make"
For some casual readers of the Makefile, "mkdir -p" is probably a little easier to read than the equivalent "-make". Reported-by: Reuben Thomas <rrt@sc3d.org> Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 9efa7d2d..f5229c5c 100644
--- a/Makefile
+++ b/Makefile
@@ -17,7 +17,7 @@ allgz: gz all
allbz: bz2 all
screen:
- -mkdir not_installed
+ mkdir -p not_installed
for i in man?/*; do \
if [ $(MANDIR)/"$$i" -nt "$$i" ]; then \
cmp -s $(MANDIR)/"$$i" "$$i" > /dev/null 2>&1; \