From e98d55d6d657929a918450f2d66252a3eca76d29 Mon Sep 17 00:00:00 2001 From: landry Date: Mon, 29 Jan 2018 18:45:39 +0000 Subject: [PATCH] Set DPB_PROPERTIES=parallel only on amd64, so that only one make job is used on i386. Set DPB_PROPERTIES=lonesome on i386 so that no new jobs are sent to the worker building rust. Fixes rust packaging on i386 within dpb. same diff/ok sthen@ --- lang/rust/Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lang/rust/Makefile b/lang/rust/Makefile index 8fd888bab3a..b7031c3a473 100644 --- a/lang/rust/Makefile +++ b/lang/rust/Makefile @@ -1,9 +1,13 @@ -# $OpenBSD: Makefile,v 1.58 2018/01/27 09:23:05 landry Exp $ +# $OpenBSD: Makefile,v 1.59 2018/01/29 18:45:39 landry Exp $ # snapshots are only available for amd64 and i386, for now ONLY_FOR_ARCHS = amd64 i386 +.if "${MACHINE_ARCH}" == "i386" +DPB_PROPERTIES = lonesome +.else DPB_PROPERTIES = parallel +.endif COMMENT-main = compiler for Rust Language COMMENT-doc = html documentation for rustc