blob: e535aedf5145d68bd89804c76254e2a63e53a0bc [file] [log] [blame]
Andrew Geissler7e0e3c02022-02-25 20:34:39 +00001From 7c00d75d16da18a9998fc4cca28d3c953dd54ceb Mon Sep 17 00:00:00 2001
2From: =?UTF-8?q?Cl=C3=A9ment=20P=C3=A9ron?= <peron.clem@gmail.com>
3Date: Mon, 14 Feb 2022 18:37:22 +0100
4Subject: [PATCH] Cmds: automatically create folder
5
6---
7 Cmds | 3 ++-
8 1 file changed, 2 insertions(+), 1 deletion(-)
9
10diff --git a/Cmds b/Cmds
11index e590b38..3df23b8 100644
12--- a/Cmds
13+++ b/Cmds
14@@ -44,7 +44,8 @@ ifeq ("$(origin PREFIX)", "$(filter $(origin PREFIX), file command line)")
15 INSTX = echo -e " INST\t$(1)" && install -d $(2) && \
16 install -C $(1) $(2)/$(shell basename $(1))
17 else
18- INSTX = echo -e " INST\t$(1)" && install -C $(1) $(2)/$(shell basename $(1))
19+ INSTX = echo -e " INST\t$(1)" && install -d $(2) && \
20+ install -C $(1) $(2)/$(shell basename $(1))
21 endif
22
23 MKDIR = echo -e " MKDIR\t$(1)" && mkdir -p $(1)
24--
252.32.0
26