Skip to content

Commit

Permalink
Fix syntax: had to use escaped $$ to have an effect after first expan…
Browse files Browse the repository at this point in the history
…sion.
  • Loading branch information
pnkfelix committed May 4, 2013
1 parent 4dd0fa6 commit 495bceb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion mk/host.mk
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ $$(HLIB$(2)_H_$(4))/$(CFG_RUSTLLVM_$(4)): \
$$(Q)cp $$< $$@

$$(HBIN$(2)_H_$(4))/:
mkdir -p $@
mkdir -p $$@

endef

Expand Down
2 changes: 1 addition & 1 deletion mk/target.mk
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ endif
endif

$$(TLIB$(1)_T_$(2)_H_$(3))/:
mkdir -p $@
mkdir -p $$@

endef

Expand Down

0 comments on commit 495bceb

Please sign in to comment.