PKGBUILDs/alarm/devtools-alarm/0003-makechrootpkg-distcc.patch

28 lines
948 B
Diff
Raw Normal View History

2019-09-21 15:13:45 +00:00
From 9ca1e5f1c2fdfa559259166e48a4691dfe8f43f4 Mon Sep 17 00:00:00 2001
2014-12-30 02:41:19 +00:00
From: Kevin Mihelich <kevin@archlinuxarm.org>
Date: Sun, 28 Dec 2014 22:32:15 -0700
2018-05-31 18:51:19 +00:00
Subject: [PATCH 3/7] makechrootpkg: distcc
2014-12-30 02:41:19 +00:00
---
2017-12-13 01:42:01 +00:00
makechrootpkg.in | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
2014-12-30 02:41:19 +00:00
diff --git a/makechrootpkg.in b/makechrootpkg.in
2019-09-21 15:13:45 +00:00
index f60d978..aa65ae5 100644
2014-12-30 02:41:19 +00:00
--- a/makechrootpkg.in
+++ b/makechrootpkg.in
2019-09-21 15:13:45 +00:00
@@ -230,7 +230,9 @@ _chrootbuild() {
2017-12-13 01:42:01 +00:00
# use "$" in arguments to commands with "sudo -i". ${foo} or
# ${1} is OK, but $foo or $1 isn't.
# https://bugzilla.sudo.ws/show_bug.cgi?id=765
2018-05-31 18:51:19 +00:00
- sudo --preserve-env=SOURCE_DATE_EPOCH -iu builduser bash -c 'cd /startdir; makepkg "$@"' -bash "$@"
+ mkdir /build/.distcc
2014-12-30 02:41:19 +00:00
+ chown builduser /build/.distcc
2018-05-31 18:51:19 +00:00
+ sudo --preserve-env=SOURCE_DATE_EPOCH -iu builduser DISTCC_IO_TIMEOUT=1200 DISTCC_DIR='/build/.distcc' bash -c 'cd /startdir; makepkg "$@"' -bash "$@"
ret=$?
case $ret in
0|14)
2014-12-30 02:41:19 +00:00
--
2019-09-21 15:13:45 +00:00
2.22.0
2014-12-30 02:41:19 +00:00