From d75a865f165d07dbd467cde6d0667c14b23140e9 Mon Sep 17 00:00:00 2001 From: jow Date: Tue, 11 Oct 2011 23:07:30 +0000 Subject: [PATCH] [packages] distribute: make the host build depend on python to ensure that python-package.mk is available, fixes random distribute build failures during parallel build runs git-svn-id: svn://svn.openwrt.org/openwrt/packages@28424 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- lang/distribute/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lang/distribute/Makefile b/lang/distribute/Makefile index f164508bc..c38d277dc 100644 --- a/lang/distribute/Makefile +++ b/lang/distribute/Makefile @@ -16,6 +16,8 @@ PKG_SOURCE_URL:=http://pypi.python.org/packages/source/d/$(PKG_NAME)/ PKG_MD5SUM:=f783444754861f9b33e9f4083bd97b60 PKG_BUILD_DIR:=$(BUILD_DIR_HOST)/$(PKG_NAME)-$(PKG_VERSION)/ +HOST_BUILD_DEPENDS:=python + include $(INCLUDE_DIR)/host-build.mk include $(INCLUDE_DIR)/package.mk $(call include_mk, python-package.mk)