diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2010-09-09 21:05:51 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2010-09-09 21:05:51 +0000 |
commit | 6cbd09df64b48f6252e1230123194bfcb2f6a2a0 (patch) | |
tree | 78da1d6af6dfe3235cb6da85cf559131f5c85124 /include | |
parent | 70dff7070ed289d1fd8078a3bf80713ed959b20d (diff) | |
download | upstream-6cbd09df64b48f6252e1230123194bfcb2f6a2a0.tar.gz upstream-6cbd09df64b48f6252e1230123194bfcb2f6a2a0.tar.bz2 upstream-6cbd09df64b48f6252e1230123194bfcb2f6a2a0.zip |
pass opkg offline root as command line arg, solves caching issues when switching between multiple subtargets, thanks Ralph Hempel for reporting
SVN-Revision: 22990
Diffstat (limited to 'include')
-rw-r--r-- | include/package-ipkg.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/package-ipkg.mk b/include/package-ipkg.mk index 9212c1ff92..0ac6bb53f6 100644 --- a/include/package-ipkg.mk +++ b/include/package-ipkg.mk @@ -13,6 +13,7 @@ OPKG:= \ IPKG_OFFLINE_ROOT=$(TARGET_DIR) \ $(STAGING_DIR_HOST)/bin/opkg \ -f $(STAGING_DIR)/etc/opkg.conf \ + --offline-root $(TARGET_DIR) \ --force-depends \ --force-overwrite \ --force-run-hooks @@ -126,7 +127,6 @@ ifeq ($(DUMP),) mkdir -p $(STAGING_DIR)/etc ( echo "dest root /" > $@; \ echo "arch all 100" >> $@; \ - echo "arch $(PKGARCH) 200" >> $@; \ - echo "option offline_root $(TARGET_DIR)" >> $@ ) + echo "arch $(PKGARCH) 200" >> $@ ) endif |