From 14e8c4ed75c9b46b61a704b2e49c678724c3df3a Mon Sep 17 00:00:00 2001 From: Pascal Barth Date: Mon, 4 Jul 2022 09:43:39 +0200 Subject: [PATCH] Better compatibility with many shells I had issue with `-m=XXX` with my macOS shell, and if I remove the `=` sign it's all good, without changing what it does. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index a2c4b3e..4bcbc10 100644 --- a/Makefile +++ b/Makefile @@ -218,5 +218,5 @@ $(TIMESTAMPS): $(LOGS_DIR): - mkdir -p -m=777 $(LOGS_DIR) + mkdir -p -m 777 $(LOGS_DIR)