You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

build.sh 309 B

12345678910111213141516
  1. #!/bin/sh
  2. REALANTHOME=$ANT_HOME
  3. ANT_HOME=.
  4. export ANT_HOME
  5. if test ! -f bootstrap/lib/ant.jar -o ! -x bootstrap/bin/ant -o ! -x bootstrap/bin/antRun ; then
  6. /bin/sh ./bootstrap.sh
  7. fi
  8. if [ "$REALANTHOME" != "" ] ; then
  9. ANT_INSTALL="-Dant.install=$REALANTHOME"
  10. fi
  11. bootstrap/bin/ant $ANT_INSTALL $*