From: Felix Fietkau Date: Mon, 17 Sep 2012 11:17:26 +0000 (+0000) Subject: build: ensure that package/host-build build system code does not run in parallel... X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=052c9ce0d3d9b5698a26f6a8b47e25c7a5afa36f;p=openwrt%2Fsvn-archive%2Farchive.git build: ensure that package/host-build build system code does not run in parallel, fixes rare spurious parallel build failures SVN-Revision: 33445 --- diff --git a/include/host-build.mk b/include/host-build.mk index 06f93a14ad..e011c15480 100644 --- a/include/host-build.mk +++ b/include/host-build.mk @@ -136,6 +136,8 @@ define Host/Exports/Default endef Host/Exports=$(Host/Exports/Default) +.NOTPARALLEL: + ifndef DUMP define HostBuild $(if $(HOST_QUILT),$(Host/Quilt)) diff --git a/include/package.mk b/include/package.mk index e93aebf67d..3ec5ffdadd 100644 --- a/include/package.mk +++ b/include/package.mk @@ -248,6 +248,8 @@ Build/Install=$(if $(PKG_INSTALL),$(call Build/Install/Default,)) Build/Dist=$(call Build/Dist/Default,) Build/DistCheck=$(call Build/DistCheck/Default,) +.NOTPARALLEL: + $(PACKAGE_DIR): mkdir -p $@