Changeset 6467


Ignore:
Timestamp:
2004-01-13T15:38:02+13:00 (20 years ago)
Author:
mdewsnip
Message:

Changed all JAVAHOMEs to JAVA_HOMEs.

Location:
trunk/gli
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/gli/document.bat

    r5824 r6467  
    1717if not "%JAVADOCPATH%" == "" goto testJavadoc
    1818
    19     :: If it is set, use the JAVAHOME environment variable
    20     if not "%JAVAHOME%" == "" goto javahome
     19    :: If it is set, use the JAVA_HOME environment variable
     20    if not "%JAVA_HOME%" == "" goto javahome
    2121
    2222    :: Check if Javadoc is on the search path
     
    4444
    4545:javahome
    46     set JAVADOCPATH=%JAVAHOME%\bin
     46    set JAVADOCPATH=%JAVA_HOME%\bin
    4747
    4848:testJavadoc
  • trunk/gli/document.sh

    r5010 r6467  
    1010if [ "$javadocpath" == "" ]; then
    1111
    12     # If it is set, use the JAVAHOME environment variable
    13     if [ "$JAVAHOME" != "" ]; then
    14     javadocpath="$JAVAHOME/bin/javadoc"
     12    # If it is set, use the JAVA_HOME environment variable
     13    if [ "$JAVA_HOME" != "" ]; then
     14    javadocpath="$JAVA_HOME/bin/javadoc"
    1515
    1616    # Check if Javadoc is on the search path
  • trunk/gli/gli.bat

    r6280 r6467  
    112112if not "%JAVAPATH%" == "" goto testJava
    113113
    114     :: If it is set, use the JAVAHOME environment variable
    115     if not "%JAVAHOME%" == "" goto javahome
     114    :: If it is set, use the JAVA_HOME environment variable
     115    if not "%JAVA_HOME%" == "" goto javahome
    116116
    117117    :: Check if Java is on the search path
     
    144144
    145145:javahome
    146     set JAVAPATH=%JAVAHOME%\bin
     146    set JAVAPATH=%JAVA_HOME%\bin
    147147
    148148:testJava
  • trunk/gli/gli.sh

    r6280 r6467  
    7878if [ "$javapath" == "" ]; then
    7979
    80     # If it is set, use the JAVAHOME environment variable
    81     if [ "$JAVAHOME" != "" ]; then
    82     javapath="$JAVAHOME/bin/java"
     80    # If it is set, use the JAVA_HOME environment variable
     81    if [ "$JAVA_HOME" != "" ]; then
     82    javapath="$JAVA_HOME/bin/java"
    8383
    8484    # Check if Java is on the search path
  • trunk/gli/makegli.bat

    r6280 r6467  
    2323if not "%JAVACPATH%" == "" goto testJavac
    2424
    25     :: If it is set, use the JAVAHOME environment variable
    26     if not "%JAVAHOME%" == "" goto javahome
     25    :: If it is set, use the JAVA_HOME environment variable
     26    if not "%JAVA_HOME%" == "" goto javahome
    2727
    2828    :: Check if Javac is on the search path
     
    5050
    5151:javahome
    52     set JAVACPATH=%JAVAHOME%\bin
     52    set JAVACPATH=%JAVA_HOME%\bin
    5353
    5454:testJavac
  • trunk/gli/makegli.sh

    r6280 r6467  
    1616if [ "$javacpath" == "" ]; then
    1717
    18     # If it is set, use the JAVAHOME environment variable
    19     if [ "$JAVAHOME" != "" ]; then
    20     javacpath="$JAVAHOME/bin/javac"
     18    # If it is set, use the JAVA_HOME environment variable
     19    if [ "$JAVA_HOME" != "" ]; then
     20    javacpath="$JAVA_HOME/bin/javac"
    2121
    2222    # Check if Javac is on the search path
Note: See TracChangeset for help on using the changeset viewer.