Changeset 8477


Ignore:
Timestamp:
2004-11-05T16:36:33+13:00 (19 years ago)
Author:
mdewsnip
Message:

Updated so it works with Java SDK 1.5.0.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gli/makegli.sh

    r8313 r8477  
    8383    # Special code for javac 1.4.2, since it complains about "no source files"
    8484    javacOK142=`$javacpath -target 1.4 2>&1 | grep "javac: no source files"`
    85     if [ "$javacOK142" = "" ]; then
     85    # Special code for javac 1.5, since it is different again
     86    javacOK15=`$javacpath -target 1.5 2>&1 | grep "javac: no source files"`
     87    if [ "$javacOK142" = "" ] && [ "$javacOK15" = "" ]; then
    8688    echo
    8789    if [ "$glilang" == "es" ]; then
Note: See TracChangeset for help on using the changeset viewer.