From 50be438d4a33e08dd310206425e3e05788c66330 Mon Sep 17 00:00:00 2001 From: Judd Vinet Date: Wed, 14 Dec 2005 02:40:01 +0000 Subject: added frugalware patch for DistCC support --- scripts/makepkg | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'scripts/makepkg') diff --git a/scripts/makepkg b/scripts/makepkg index 02e7d895..c1df97eb 100755 --- a/scripts/makepkg +++ b/scripts/makepkg @@ -591,6 +591,15 @@ if [ "$NOBUILD" = "1" ]; then exit 0 fi +# use distcc if requested +if [ "$DISTCC" = "y" ]; then + [ -d /usr/lib/distcc/bin ] && export PATH=/usr/lib/distcc/bin:$PATH + if [ "$INCHROOT" = "1" ]; then + [ -d /var/tmp/fst/.distcc ] || mkdir /var/tmp/fst/.distcc + export DISTCC_DIR=/var/tmp/fst/.distcc + fi +fi + # use ccache if it's available if [ "$NOCCACHE" = "0" ]; then [ -d /usr/lib/ccache/bin ] && export PATH=/usr/lib/ccache/bin:$PATH -- cgit v1.2.3-54-g00ecf