Skip to content

Commit

Permalink
use relative not absolute paths for directory structure creation
Browse files Browse the repository at this point in the history
  • Loading branch information
Keno committed May 29, 2012
1 parent 853f3c9 commit baeb10c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ define dir_target
$(1):
@mkdir -p $$@
endef
$(foreach dir,$(DIRS),$(eval $(call dir_target,$(abspath $(dir)))))
$(foreach dir,$(DIRS),$(eval $(call dir_target,$(dir))))
$(foreach link,extras base,$(eval $(call symlink_target,$(link),usr/lib)))

debug release: | $(DIRS) usr/lib/extras usr/lib/base
Expand Down

0 comments on commit baeb10c

Please sign in to comment.