From: Nicolas Thill Date: Mon, 23 Oct 2006 20:57:35 +0000 (+0000) Subject: don't check for enabled packages in the sdk, build'em all by default X-Git-Tag: whiterussian_rc6~57 X-Git-Url: http://git.cdn.openwrt.org/?a=commitdiff_plain;h=41630377e0c4d18c3e8d1ecfe15d24d60044d58e;p=openwrt%2Fsvn-archive%2Fopenwrt.git don't check for enabled packages in the sdk, build'em all by default SVN-Revision: 5273 --- diff --git a/openwrt/package/sdk/files/include/package.mk b/openwrt/package/sdk/files/include/package.mk index 01781c71c7..c1811c5f27 100644 --- a/openwrt/package/sdk/files/include/package.mk +++ b/openwrt/package/sdk/files/include/package.mk @@ -132,17 +132,7 @@ define BuildPackage INFO_$(1):=$(IPKG_STATE_DIR)/info/$(1).list ifdef Package/$(1)/install - ifeq ($(CONFIG_PACKAGE_$(1)),y) - install-targets: $$(INFO_$(1)) - endif - - ifneq ($(CONFIG_PACKAGE_$(1)),) - compile-targets: $$(IPKG_$(1)) - else - compile-targets: $(1)-disabled - $(1)-disabled: - @echo "WARNING: skipping $(1) -- package not selected" - endif + compile-targets: $$(IPKG_$(1)) endif ifeq ($(FORCEREBUILD),y)