From 232fa896f541df20cac90eb862132523429691bd Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Tue, 29 Jan 2013 21:31:59 +0000 Subject: make builds use Fink fully, rather than just tacked onto the PATH (. /sw/bin/init.sh) svn path=/trunk/; revision=16996 --- scripts/auto-build/run-automated-builder | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/scripts/auto-build/run-automated-builder b/scripts/auto-build/run-automated-builder index bbef063c..11f8fc3a 100755 --- a/scripts/auto-build/run-automated-builder +++ b/scripts/auto-build/run-automated-builder @@ -1,11 +1,12 @@ #!/bin/sh +# go to a directory that we know exists everywhere, including chroots ;) cd / -# On Mac OS X, there are some handy things in Fink, but don't override the -# built-in tools -PATH="${PATH}:/sw/bin:/sw/sbin" -export PATH +# if on Mac OS X, include Fink for all of the libs and tools +if [ -e /sw/bin/init.sh ]; then + . /sw/bin/init.sh +fi # the source dir where this script is SCRIPT_DIR=$(echo $0 | sed 's|\(.*\)/.*$|\1|') -- cgit v1.2.1