#!/bin/sh # * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * # * This source file is part of SableVM. * # * * # * See the file "LICENSE" for the copyright information and for * # * the terms and conditions for copying, distribution and * # * modification of this source file. * # * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * # This wrapper allows us to run 'javac' command using either our own # or system-wide jikes before SableVM Classpath and/or Jikes are # installed. This is a specialized version of javac-sablevm wrapper. if [ -x "@JIKES@" ]; then JIKES="@JIKES@" else echo "Error; unable to find 'jikes' compiler. This might indicate a bug" >&2 echo "in SableVM SDK build system. Please report to http://sablevm.org/bugs" >&2 exit 1 fi exec $JIKES "$@" echo "Error: unable to execute $JIKES." >&2 exit 1