summaryrefslogtreecommitdiffstats
path: root/target
diff options
context:
space:
mode:
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-11-19 14:07:32 +0000
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-11-19 14:07:32 +0000
commit680764b28fdbbaae921ac89a033f30fffa948791 (patch)
treeae3c771805886b1b08613c9582e07ddb47ce5574 /target
parent65a03eea13a9d5b6896e83073510ef8cc951441a (diff)
allow comment lines in the image builder
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@2533 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target')
-rw-r--r--target/linux/imagebuilder/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/imagebuilder/Makefile b/target/linux/imagebuilder/Makefile
index c70fb11e9..0ec71199c 100644
--- a/target/linux/imagebuilder/Makefile
+++ b/target/linux/imagebuilder/Makefile
@@ -36,7 +36,7 @@ build:
mkdir -p $(LINUX_BUILD_DIR)/root
echo -e 'dest root /\noption offline_root $(LINUX_BUILD_DIR)/root' > $(LINUX_BUILD_DIR)/ipkg.conf
$(IPKG_KERNEL) install $(BUILD_DIR)/linux-$(KERNEL)-$(BOARD)/kernel[-_]*.ipk
- for package in `cat lists/$(LIST).$(BOARD)-$(KERNEL)`; do \
+ for package in `grep -v '^#' lists/$(LIST).$(BOARD)-$(KERNEL)`; do \
$(IPKG_KERNEL) install `ls packages/$${package}_*`; \
done
if [ -d ./files ]; then \