diff options
| author | Felix Fietkau <nbd@openwrt.org> | 2005-11-19 14:07:32 +0000 |
|---|---|---|
| committer | Felix Fietkau <nbd@openwrt.org> | 2005-11-19 14:07:32 +0000 |
| commit | 8ad04cb900bb4f9dc83d30f6fdb1c75b7149315e (patch) | |
| tree | 4f58ccffb5d2bdf6a92f51a51d2ed5dd8e2dac58 | |
| parent | 8be45a697f8291118d6e4fbc242eb645a7c082d4 (diff) | |
| download | upstream-8ad04cb900bb4f9dc83d30f6fdb1c75b7149315e.tar.gz upstream-8ad04cb900bb4f9dc83d30f6fdb1c75b7149315e.tar.bz2 upstream-8ad04cb900bb4f9dc83d30f6fdb1c75b7149315e.zip | |
allow comment lines in the image builder
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@2533 3c298f89-4303-0410-b956-a3cf2f4a3e73
| -rw-r--r-- | openwrt/target/linux/imagebuilder/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openwrt/target/linux/imagebuilder/Makefile b/openwrt/target/linux/imagebuilder/Makefile index c70fb11e93d..0ec71199c7e 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 \ |
