diff options
author | Felix Fietkau <nbd@openwrt.org> | 2005-08-27 12:00:52 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2005-08-27 12:00:52 +0000 |
commit | 08d4b40d823af1caba093bd1ff60d299a7c0054d (patch) | |
tree | ee61566ce027b47ab14d681f998904a97fdeadfc /target/linux/imagebuilder | |
parent | 4ecab815c82faaad6b1a20750cc06a3f057919e8 (diff) | |
download | upstream-08d4b40d823af1caba093bd1ff60d299a7c0054d.tar.gz upstream-08d4b40d823af1caba093bd1ff60d299a7c0054d.tar.bz2 upstream-08d4b40d823af1caba093bd1ff60d299a7c0054d.zip |
small image builder change
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1768 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/imagebuilder')
-rw-r--r-- | target/linux/imagebuilder/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/target/linux/imagebuilder/Makefile b/target/linux/imagebuilder/Makefile index f097e89e69..95b0939c4e 100644 --- a/target/linux/imagebuilder/Makefile +++ b/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 |