diff options
| author | jow <jow@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2012-12-02 15:15:07 +0000 |
|---|---|---|
| committer | jow <jow@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2012-12-02 15:15:07 +0000 |
| commit | d6cb42092f63eec7757cddcdbdb3dc39afcf248e (patch) | |
| tree | 952c7fd15daeabb189ea172af78bd6fc283344dc | |
| parent | 3b3603675e67d1a2b298286cf8e8bf26600211e0 (diff) | |
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
| -rw-r--r-- | rules.mk | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -302,7 +302,7 @@ define file_copy rm -f "$$FILE"; \ done; ); \ done; \ - $(CP) $(1) $(realpath $(2)/)/ + $(CP) $(1) $(2) endef # file extension |
