blob: 50eaf8587f6b4bff9572d83e21b780135183a4e3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#! /bin/sh
if [ -e /opt-share/etc/profile.ant ] ; then
. /opt-share/etc/profile.ant
fi
# -Dc.compiler.debug=true
ant \
-Drootrel.build=build-macosx \
$* 2>&1 | tee make.joal.all.macosx.log
|