From 6f92d1d707ab8be3ba44e4cc6d15ab93ba57958f Mon Sep 17 00:00:00 2001 From: Michael Kerrisk Date: Tue, 17 Apr 2012 04:34:49 +1200 Subject: [PATCH] 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 Signed-off-by: Michael Kerrisk --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 9efa7d2d5..f5229c5c6 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; \