aboutsummaryrefslogtreecommitdiff
path: root/install.mk
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2014-02-06 10:59:58 +0100
committerEelco Dolstra <eelco.dolstra@logicblox.com>2014-02-06 11:30:05 +0100
commit4161fce472a8875427e73776d0e8665ca49c1835 (patch)
treef6f99a40ef0f4e5a742e29a41c8ba3bf3d298e15 /install.mk
parent0da82efa5d67ab1eb8b8cc066704d7f863451d5b (diff)
Create the target directory of libraries and programs
Diffstat (limited to 'install.mk')
-rw-r--r--install.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/install.mk b/install.mk
index e8543f6b6..8211e43e7 100644
--- a/install.mk
+++ b/install.mk
@@ -4,7 +4,7 @@ define create-dir
ifndef $(1)_SEEN
$(1)_SEEN = 1
$(1):
- $$(trace-install) install -d $(1)
+ $$(trace-mkdir) install -d $(1)
endif
endef