diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2010-11-11 16:18:01 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2010-11-11 16:18:01 +0000 |
commit | e09767beea9781dcf5b2eecb475eff99d6a8cc61 (patch) | |
tree | 08714deed25b1e1d3e418e816d9359375f713fa7 /include | |
parent | 9734d09de1f4bd8bb5a7428a2bffcabe8ed73e21 (diff) | |
download | mtk-20170518-e09767beea9781dcf5b2eecb475eff99d6a8cc61.zip mtk-20170518-e09767beea9781dcf5b2eecb475eff99d6a8cc61.tar.gz mtk-20170518-e09767beea9781dcf5b2eecb475eff99d6a8cc61.tar.bz2 |
package-ipkg.mk: add support for "essential" package flag, fix typo
SVN-Revision: 23959
Diffstat (limited to 'include')
-rw-r--r-- | include/package-ipkg.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/package-ipkg.mk b/include/package-ipkg.mk index 8ff0d70..ce979a1 100644 --- a/include/package-ipkg.mk +++ b/include/package-ipkg.mk @@ -103,6 +103,7 @@ ifeq ($(DUMP),) echo "Source: $(SOURCE)"; \ echo "Section: $(SECTION)"; \ echo "Status: unknown $(if $(filter hold,$(PKG_FLAGS)),hold,ok) not-installed"; \ + echo "Essential: $(if $(filter essential,$(PKG_FLAGS)),yes,no)"; \ echo "Priority: $(PRIORITY)"; \ echo "Maintainer: $(MAINTAINER)"; \ echo "Architecture: $(PKGARCH)"; \ @@ -133,7 +134,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) + $(if $(filter-out essential,$(PKG_FLAGS)),for flag in $(filter-out essential,$(PKG_FLAGS)); do $(OPKG) flag $$$$flag $(1); done) $(1)-clean: rm -f $(PACKAGE_DIR)/$(1)_* |