diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2007-10-26 14:13:11 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2007-10-26 14:13:11 +0000 |
commit | 1b0efc49526a8dd73264a8d8e37275eeb09c4ec4 (patch) | |
tree | f6e511a21c8e51521ce26d34ae0badfe65fa4e50 /scripts/auto-build | |
parent | 53257825a064500a9797135bdd2781e652e56cc7 (diff) |
added fink to the end of the PATH on Mac OS X so that md5sum is found
svn path=/trunk/; revision=8884
Diffstat (limited to 'scripts/auto-build')
-rwxr-xr-x | scripts/auto-build/run-automated-builder | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/scripts/auto-build/run-automated-builder b/scripts/auto-build/run-automated-builder index ebc8de71..dcca923c 100755 --- a/scripts/auto-build/run-automated-builder +++ b/scripts/auto-build/run-automated-builder @@ -1,5 +1,10 @@ #!/bin/sh +# 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 + # the source dir where this script is SCRIPT_DIR=`echo $0 | sed 's|\(.*\)/.*$|\1|'` . $SCRIPT_DIR/auto-build-common |