diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-08-27 12:00:52 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-08-27 12:00:52 +0000 |
commit | 244442b624f42476bfbf99149880081b3c25a1da (patch) | |
tree | df84fc27a8565bdde2d077d4da57fd2affeed9ac /openwrt/target | |
parent | 72ee8bf58afa4f371d49c5220834215e7603e8f7 (diff) |
small image builder change
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@1768 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'openwrt/target')
-rw-r--r-- | openwrt/target/linux/imagebuilder/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/openwrt/target/linux/imagebuilder/Makefile b/openwrt/target/linux/imagebuilder/Makefile index f097e89e6..95b0939c4 100644 --- a/openwrt/target/linux/imagebuilder/Makefile +++ b/openwrt/target/linux/imagebuilder/Makefile @@ -42,7 +42,7 @@ build: if [ -d ./files ]; then \ cp -fpR ./files/* $(LINUX_BUILD_DIR)/root; \ fi - if [ -d ./files.$(BOARD) ]; then \ - cp -fpR ./files.$(BOARD)/* $(LINUX_BUILD_DIR)/root; \ + if [ -d ./files.$(LIST) ]; then \ + cp -fpR ./files.$(LIST)/* $(LINUX_BUILD_DIR)/root; \ fi $(MAKE) -S -C image KERNEL="$(KERNEL)" BOARD="$(BOARD)" BIN_DIR="$(BIN_DIR)/$(LIST)" install |