Browse Source

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
Jo-Philipp Wich 13 years ago
parent
commit
993ac4600a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      rules.mk

+ 1 - 1
rules.mk

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