summaryrefslogtreecommitdiff
path: root/Cmds
diff options
context:
space:
mode:
Diffstat (limited to 'Cmds')
-rw-r--r--Cmds3
1 files changed, 2 insertions, 1 deletions
diff --git a/Cmds b/Cmds
index e590b38..3df23b8 100644
--- a/Cmds
+++ b/Cmds
@@ -44,7 +44,8 @@ ifeq ("$(origin PREFIX)", "$(filter $(origin PREFIX), file command line)")
INSTX = echo -e " INST\t$(1)" && install -d $(2) && \
install -C $(1) $(2)/$(shell basename $(1))
else
- INSTX = echo -e " INST\t$(1)" && install -C $(1) $(2)/$(shell basename $(1))
+ INSTX = echo -e " INST\t$(1)" && install -d $(2) && \
+ install -C $(1) $(2)/$(shell basename $(1))
endif
MKDIR = echo -e " MKDIR\t$(1)" && mkdir -p $(1)