From: nbd Date: Mon, 30 May 2005 20:22:21 +0000 (+0000) Subject: manually compile packages without having the config setting active if environment... X-Git-Tag: fast2504n-3.10.28-merged~22942^2~2550 X-Git-Url: https://git.enpas.org/?a=commitdiff_plain;h=522e0c7c732b8727285a47599384bfe2f46bdb16;p=openwrt.git manually compile packages without having the config setting active if environment variable DEVELOPER is set git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1113 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/package/rules.mk b/package/rules.mk index 03b750f50e..1ca03b7593 100644 --- a/package/rules.mk +++ b/package/rules.mk @@ -6,6 +6,9 @@ INFO_$(1):=$(IPKG_STATE_DIR)/info/$(2).list ifneq ($(BR2_PACKAGE_$(1)),) compile: $$(IPKG_$(1)) endif +ifneq ($(DEVELOPER),) +compile: $$(IPKG_$(1)) +endif ifeq ($(BR2_PACKAGE_$(1)),y) install: $$(INFO_$(1)) endif