diff options
author | jow <jow@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2012-01-28 03:30:30 +0000 |
---|---|---|
committer | jow <jow@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2012-01-28 03:30:30 +0000 |
commit | 6e5d8656ed5df33ceecf0b65a8fc5ec60ebdbe80 (patch) | |
tree | 23bc70b8b9d7310dee170aba7d264d752d98bfcc | |
parent | 8ba3ef273d1db30086d486959af4c617468b3ea1 (diff) |
[sdk] make sure .config gets copied as file
When using scripts/env, .config is most likely a symbolic link
pointing to env/.config. Previously the symbolic link got
copied as-is into the SDK tarball, leading to a dangling .config
symlink on the target system which prevented the SDK from working.
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@29927 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | target/sdk/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/sdk/Makefile b/target/sdk/Makefile index bad50993d..737404108 100644 --- a/target/sdk/Makefile +++ b/target/sdk/Makefile @@ -40,7 +40,7 @@ $(BIN_DIR)/$(SDK_NAME).tar.bz2: clean rm -rf \ $(SDK_BUILD_DIR)/target/linux/*/files \ $(SDK_BUILD_DIR)/target/linux/*/patches - $(CP) \ + $(CP) -L \ $(TOPDIR)/LICENSE \ $(TOPDIR)/rules.mk \ $(TOPDIR)/.config \ |