From: Felix Fietkau Date: Sat, 19 Nov 2005 14:07:32 +0000 (+0000) Subject: allow comment lines in the image builder X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;ds=sidebyside;h=1e1744d1037cc332f26b518ef3b5bc0b3bea63cf;p=openwrt%2Fstaging%2Fdedeckeh.git allow comment lines in the image builder SVN-Revision: 2533 --- diff --git a/openwrt/target/linux/imagebuilder/Makefile b/openwrt/target/linux/imagebuilder/Makefile index c70fb11e93..0ec71199c7 100644 --- a/openwrt/target/linux/imagebuilder/Makefile +++ b/openwrt/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 \