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