rules.mk: don't use $(realpath) in file_copy, the destination directory might not exist yet - spotted while doing a fresh build
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@34447 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
3b3603675e
commit
d6cb42092f
1 changed files with 1 additions and 1 deletions
2
rules.mk
2
rules.mk
|
@ -302,7 +302,7 @@ define file_copy
|
|||
rm -f "$$FILE"; \
|
||||
done; ); \
|
||||
done; \
|
||||
$(CP) $(1) $(realpath $(2)/)/
|
||||
$(CP) $(1) $(2)
|
||||
endef
|
||||
|
||||
# file extension
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue