From: Nicolas Thill Date: Sun, 26 Aug 2007 12:42:48 +0000 (+0000) Subject: move rule for $(STAGING_DIR)/etc/ipkg.conf out of BuildIPKG so that it's defined... X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fstaging%2Flynxis%2Fomap.git;a=commitdiff_plain;h=3e47314ccb67c09b85b13a57a36271f7638fd8b4 move rule for $(STAGING_DIR)/etc/ipkg.conf out of BuildIPKG so that it's defined only once SVN-Revision: 8491 --- diff --git a/include/package-ipkg.mk b/include/package-ipkg.mk index c67ee4b8ae..cc9a780147 100644 --- a/include/package-ipkg.mk +++ b/include/package-ipkg.mk @@ -71,11 +71,6 @@ ifeq ($(DUMP),) $$(INFO_$(1)): $$(IPKG_$(1)) $(IPKG) install $$(IPKG_$(1)) - $(STAGING_DIR)/etc/ipkg.conf: - mkdir -p $(STAGING_DIR)/etc - echo "dest root /" > $(STAGING_DIR)/etc/ipkg.conf - echo "option offline_root $(TARGET_DIR)" >> $(STAGING_DIR)/etc/ipkg.conf - $(1)-clean: rm -f $(PACKAGE_DIR)/$(1)_* @@ -88,4 +83,10 @@ ifeq ($(DUMP),) $$(eval $$(call Build/DefaultTargets,$(1))) endef + + $(STAGING_DIR)/etc/ipkg.conf: + mkdir -p $(STAGING_DIR)/etc + echo "dest root /" > $(STAGING_DIR)/etc/ipkg.conf + echo "option offline_root $(TARGET_DIR)" >> $(STAGING_DIR)/etc/ipkg.conf + endif