From e93e7028597a5c4ca0810c6da872144a33b846e1 Mon Sep 17 00:00:00 2001 From: Kevin Mihelich Date: Sun, 28 Dec 2014 22:32:15 -0700 Subject: [PATCH] makechrootpkg: distcc --- makechrootpkg.in | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/makechrootpkg.in b/makechrootpkg.in index 2b9459c..51c914f 100644 --- a/makechrootpkg.in +++ b/makechrootpkg.in @@ -214,7 +214,9 @@ _chrootbuild() { # 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 - sudo --preserve-env=SOURCE_DATE_EPOCH -iu builduser bash -c 'cd /startdir; makepkg "$@"' -bash "$@" + mkdir /build/.distcc + chown builduser /build/.distcc + 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)