rules.mk: don't use $(realpath) in file_copy, the destination directory might not exist yet - spotted while doing a fresh build

SVN-Revision: 34447
v19.07.3_mercusys_ac12_duma
Jo-Philipp Wich 12 years ago
parent e0e43655ce
commit 993ac4600a

@ -302,7 +302,7 @@ define file_copy
rm -f "$$FILE"; \
done; ); \
done; \
$(CP) $(1) $(realpath $(2)/)/
$(CP) $(1) $(2)
endef
# file extension

Loading…
Cancel
Save