From 1545f46b7695c13482a38b93a27297e95c9ff93a Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Mon, 30 May 2005 20:22:21 +0000 Subject: [PATCH] manually compile packages without having the config setting active if environment variable DEVELOPER is set SVN-Revision: 1113 --- openwrt/package/rules.mk | 3 +++ 1 file changed, 3 insertions(+) diff --git a/openwrt/package/rules.mk b/openwrt/package/rules.mk index 03b750f50e..1ca03b7593 100644 --- a/openwrt/package/rules.mk +++ b/openwrt/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