From: Andy Boyett Date: Thu, 2 Jul 2009 07:24:50 +0000 (+0000) Subject: fix profile package selection, packages from last parsed profile were accidentally... X-Git-Tag: reboot~23081 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=b7287967069d6e0ee4669c7f2d7db78b309c349a;p=oweals%2Fopenwrt.git fix profile package selection, packages from last parsed profile were accidentally installed SVN-Revision: 16653 --- diff --git a/target/imagebuilder/files/Makefile b/target/imagebuilder/files/Makefile index b526925177..c7f43550ab 100644 --- a/target/imagebuilder/files/Makefile +++ b/target/imagebuilder/files/Makefile @@ -1,6 +1,6 @@ # Makefile for OpenWrt # -# Copyright (C) 2007-2008 OpenWrt.org +# Copyright (C) 2007-2009 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. @@ -81,7 +81,7 @@ $(TOPDIR)/tmp/ipkg.conf: FORCE @echo 'dest root /' > $@ @echo 'src packages file:$(PACKAGE_DIR)' >> $@ -BUILD_PACKAGES:=$(sort $(DEFAULT_PACKAGES) $(PACKAGES) $($(PROFILE)_PACKAGES) kernel) +BUILD_PACKAGES:=$(sort $(DEFAULT_PACKAGES) $($(PROFILE)_PACKAGES) kernel) ifeq ($(KERNEL),2.4) BUILD_PACKAGES:=$(patsubst base-files,base-files-$(BOARD)-$(KERNEL),$(BUILD_PACKAGES)) else