Move the dmg build to weatherwax (which can now deal with it. )

Also, remove attempt for a smart use of `fmt' -- the problem is that now
"$platform" is not set, so the conditional didn't do anything.  It would
be easy to get a conditional using `uname', but better to drop the whole
thing.
(cherry picked from commit 2a1464b49e)
This commit is contained in:
Eli Barzilay 2012-01-20 11:39:41 -05:00 committed by Ryan Culpepper
parent a4a30200e5
commit 260ef1e43d

View File

@ -53,7 +53,7 @@ workmachine="winooski"
maindir="/home/scheme" maindir="/home/scheme"
# machines for specific installer creations # machines for specific installer creations
dmgmachine="kauai" dmgmachine="weatherwax"
nsismachine="pitcairn" nsismachine="pitcairn"
# list of environment variables that should be carried over to ssh jobs # list of environment variables that should be carried over to ssh jobs
@ -479,17 +479,10 @@ show() {
if [[ "x$1" = "x-s" ]]; then shift; write_status "$*"; fi if [[ "x$1" = "x-s" ]]; then shift; write_status "$*"; fi
if [[ "$verbose" = "yes" ]]; then if [[ "$verbose" = "yes" ]]; then
echo "" echo ""
case "$platform" in # It would be nice to use something like
( *"-linux"* | "sparc-solaris" | *"-win32" ) # echo ">>> $*" | fmt -p '>>>' -w 79
echo ">>> $*" | fmt -t -w 79 # but on osx fmt doesn't do that kind of stuff
;; echo ">>> $*"
( *"-freebsd" | *"-osx-mac" | *"-darwin" )
echo ">>> $*" | fmt -w 79
;;
( * )
echo ">>> $*" | fmt
;;
esac
fi fi
} }