add support for flagging packages

SVN-Revision: 23172
This commit is contained in:
Jo-Philipp Wich 2010-10-02 03:21:33 +00:00
parent adcfdc46e0
commit 8b9ca16985
2 changed files with 6 additions and 0 deletions

View File

@ -23,6 +23,11 @@ define Package/Default
else
VERSION:=$(PKG_RELEASE)
endif
ifneq ($(PKG_FLAGS),)
PKGFLAGS:=$(PKG_FLAGS)
else
PKGFLAGS:=
endif
ifneq ($(ARCH_PACKAGES),)
PKGARCH:=$(ARCH_PACKAGES)
else

View File

@ -117,6 +117,7 @@ ifeq ($(DUMP),)
$$(INFO_$(1)): $$(IPKG_$(1))
@[ -d $(TARGET_DIR)/tmp ] || mkdir -p $(TARGET_DIR)/tmp
$(OPKG) install $$(IPKG_$(1))
$(if $(PKGFLAGS),for flag in $(PKGFLAGS); do $(OPKG) flag $$$$flag $(1); done)
$(1)-clean:
rm -f $(PACKAGE_DIR)/$(1)_*