summaryrefslogtreecommitdiff
path: root/package/Makefile
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2010-07-23 19:49:19 +0000
committerJo-Philipp Wich <jow@openwrt.org>2010-07-23 19:49:19 +0000
commit8c1d9afc409fa26245256b91eb045a2f50f54c92 (patch)
tree65903012d23f729041ca23154b1ebc11003b9d7b /package/Makefile
parent4ee3ae96c2fc373a91c2ea38fa62a4f000112ddf (diff)
downloadmtk-20170518-8c1d9afc409fa26245256b91eb045a2f50f54c92.zip
mtk-20170518-8c1d9afc409fa26245256b91eb045a2f50f54c92.tar.gz
mtk-20170518-8c1d9afc409fa26245256b91eb045a2f50f54c92.tar.bz2
use host opkg for installing packages in buildroot and ImageBuilder
SVN-Revision: 22372
Diffstat (limited to 'package/Makefile')
-rw-r--r--package/Makefile12
1 files changed, 8 insertions, 4 deletions
diff --git a/package/Makefile b/package/Makefile
index 5468bdc..530405c 100644
--- a/package/Makefile
+++ b/package/Makefile
@@ -20,6 +20,9 @@ ifneq ($(IGNORE_ERRORS),)
$(curdir)/builddirs-ignore-compile:= $(if $(filter m y, $(IGNORE_ERRORS)),$(foreach m,$(IGNORE_ERRORS),$(package-$(m))),$(package-m))
endif
+$(curdir)/opkghost: $(TMP_DIR)/.build
+ @-$(MAKE) package/opkg/host/install
+
$(curdir)/install:=$(curdir)/install-cleanup
$(curdir)/cleanup: $(TMP_DIR)/.build
@@ -88,9 +91,10 @@ $(curdir)/index: FORCE
$(curdir)/flags-install:= -j1
$(eval $(call stampfile,$(curdir),package,prereq,.config))
-$(eval $(call stampfile,$(curdir),package,cleanup,$(TMP_DIR)/.build))
-$(eval $(call stampfile,$(curdir),package,compile,$(TMP_DIR)/.build))
-$(eval $(call stampfile,$(curdir),package,install,$(TMP_DIR)/.build))
-$(eval $(call stampfile,$(curdir),package,rootfs-prepare,$(TMP_DIR)/.build))
+$(eval $(call stampfile,$(curdir),package,cleanup))
+$(eval $(call stampfile,$(curdir),package,compile))
+$(eval $(call stampfile,$(curdir),package,opkghost))
+$(eval $(call stampfile,$(curdir),package,install,$(STAGING_DIR)/stamp/.package_opkghost))
+$(eval $(call stampfile,$(curdir),package,rootfs-prepare))
$(eval $(call subdir,$(curdir)))