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 | dc47767d0151c09531ed3fc3c7edc04f08a5a671 (patch) | |
tree | f5e021d4c716b7450c8857a8d5e7353403eb82b3 | |
parent | 58de48975d267273625410449fe910229090aa07 (diff) | |
download | upstream-dc47767d0151c09531ed3fc3c7edc04f08a5a671.tar.gz upstream-dc47767d0151c09531ed3fc3c7edc04f08a5a671.tar.bz2 upstream-dc47767d0151c09531ed3fc3c7edc04f08a5a671.zip |
fix CONFIG_ALL
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4397 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | include/package.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/package.mk b/include/package.mk index 3dc944dbfa..fbd4cf7149 100644 --- a/include/package.mk +++ b/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 |