diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2012-07-15 19:29:43 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2012-07-15 19:29:43 +0000 |
commit | ec770abd0de5a0141f25dc476c25e4fdd5e04a7d (patch) | |
tree | f34afe65a04089d551d82dc8b464ec3f3e17c6d5 /include | |
parent | 21de1b9d85c39ff09450012a44f8f1ff71cdd420 (diff) | |
download | upstream-ec770abd0de5a0141f25dc476c25e4fdd5e04a7d.tar.gz upstream-ec770abd0de5a0141f25dc476c25e4fdd5e04a7d.tar.bz2 upstream-ec770abd0de5a0141f25dc476c25e4fdd5e04a7d.zip |
package-ipkg.mk: flag packages as "ok" after install
By flagging compile-time-installed packages as "ok", they can be differentiated
from runtime-installed packages on the target later on.
SVN-Revision: 32739
Diffstat (limited to 'include')
-rw-r--r-- | include/package-ipkg.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/package-ipkg.mk b/include/package-ipkg.mk index 0ce2055061..14520cfd95 100644 --- a/include/package-ipkg.mk +++ b/include/package-ipkg.mk @@ -191,7 +191,7 @@ ifeq ($(DUMP),) $$(INFO_$(1)): $$(IPKG_$(1)) @[ -d $(TARGET_DIR)/tmp ] || mkdir -p $(TARGET_DIR)/tmp $(OPKG) install $$(IPKG_$(1)) - $(if $(filter-out essential,$(PKG_FLAGS)),for flag in $(filter-out essential,$(PKG_FLAGS)); 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,$(OPKG) flag ok $(1)) $(1)-clean: rm -f $(PACKAGE_DIR)/$(1)_* |