diff options
author | Mike Baker <mbm@openwrt.org> | 2006-08-02 13:40:11 +0000 |
---|---|---|
committer | Mike Baker <mbm@openwrt.org> | 2006-08-02 13:40:11 +0000 |
commit | 188f64115308d1d09914ee300c4ee47777550a23 (patch) | |
tree | 161bc3c1c7f8e396047eb86358c33520a5da59a4 | |
parent | b6c286e0af3e7c31da47c295c7500d3f44d0a8ce (diff) | |
download | mtk-20170518-188f64115308d1d09914ee300c4ee47777550a23.zip mtk-20170518-188f64115308d1d09914ee300c4ee47777550a23.tar.gz mtk-20170518-188f64115308d1d09914ee300c4ee47777550a23.tar.bz2 |
fix CONFIG_ALL
SVN-Revision: 4397
-rw-r--r-- | openwrt/include/package.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/openwrt/include/package.mk b/openwrt/include/package.mk index 3dc944d..fbd4cf7 100644 --- a/openwrt/include/package.mk +++ b/openwrt/include/package.mk @@ -19,7 +19,7 @@ define Build/DefaultTargets $(PKG_BUILD_DIR)/.prepared: package-clean endif - ifneq ($$(shell $(SCRIPT_DIR)/timestamp.pl -p -x ipkg $(IPKG_$(1)) $(PKG_BUILD_DIR)),$(IPKG_$(1))) + ifneq ($$(shell $(SCRIPT_DIR)/timestamp.pl -p -x ipkg -x ipkg-install $(IPKG_$(1)) $(PKG_BUILD_DIR) | tee /tmp/check_$(1)),$(IPKG_$(1))) $(PKG_BUILD_DIR)/.built: package-rebuild endif endif @@ -121,7 +121,7 @@ define BuildPackage install-targets: $$(INFO_$(1)) endif - ifneq ($(CONFIG_PACKAGE_$(1))$(DEVELOPER),) + ifneq ($(CONFIG_PACKAGE_$(1))$(CONFIG_ALL),) compile-targets: $$(IPKG_$(1)) endif endif |