You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
456 B
25 lines
456 B
# ant.conf (Ant 1.8.x)
|
|
# JPackage Project <http://www.jpackage.org/>
|
|
|
|
# Validate --noconfig setting in case being invoked
|
|
# from pre Ant 1.6.x environment
|
|
if [ -z "$no_config" ] ; then
|
|
no_config=true
|
|
fi
|
|
|
|
# Setup ant configuration
|
|
if $no_config ; then
|
|
# Disable RPM layout
|
|
rpm_mode=false
|
|
else
|
|
# Use RPM layout
|
|
rpm_mode=true
|
|
|
|
# ANT_HOME for rpm layout
|
|
ANT_HOME=/usr/share/ant
|
|
|
|
if [ -z "$JAVA_HOME" ] ; then
|
|
. /etc/java/ant.conf
|
|
fi
|
|
fi
|