Skip to content

Commit 495bceb

Browse files
committed
Fix syntax: had to use escaped $$ to have an effect after first expansion.
1 parent 4dd0fa6 commit 495bceb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

mk/host.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ $$(HLIB$(2)_H_$(4))/$(CFG_RUSTLLVM_$(4)): \
128128
$$(Q)cp $$< $$@
129129

130130
$$(HBIN$(2)_H_$(4))/:
131-
mkdir -p $@
131+
mkdir -p $$@
132132

133133
endef
134134

mk/target.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ endif
8484
endif
8585

8686
$$(TLIB$(1)_T_$(2)_H_$(3))/:
87-
mkdir -p $@
87+
mkdir -p $$@
8888

8989
endef
9090

0 commit comments

Comments
 (0)