? unxlngi4.pro Index: script/setup.sh =================================================================== RCS file: /cvs/installation/setup2/script/setup.sh,v retrieving revision 1.12.4.2.6.1.18.1 diff -u -3 -p -r1.12.4.2.6.1.18.1 setup.sh --- script/setup.sh 16 Feb 2003 22:10:06 -0000 1.12.4.2.6.1.18.1 +++ script/setup.sh 19 Feb 2003 08:54:02 -0000 @@ -85,7 +85,7 @@ sd_setup_binary=setup.bin sd_platform=`uname -s` sd_release=`uname -r` -if [ $sd_platform == "IRIX64" ]; then +if [ $sd_platform = "IRIX64" ]; then # IRIX and IRIX64 are the same for our purposes sd_platform=IRIX fi @@ -146,7 +146,7 @@ esac if [ -x "./javaldx" ]; then java_ld_library_path=`"./javaldx" "--search-for-java" "$1" "$2" "$3" "$4" "$5" "$6" "$7" "$8" "$9"` if [ "$java_ld_library_path" != "" ] ; then - if [ $sd_platform == "IRIX" ]; then + if [ $sd_platform = "IRIX" ]; then LD_LIBRARYN32_PATH=${java_ld_library_path}:${LD_LIBRARYN32_PATH} else LD_LIBRARY_PATH=${java_ld_library_path}:${LD_LIBRARY_PATH} Index: source/custom/jvmsetup/loader/jvmsetup.sh =================================================================== RCS file: /cvs/installation/setup2/source/custom/jvmsetup/loader/jvmsetup.sh,v retrieving revision 1.4.46.1 diff -u -3 -p -r1.4.46.1 jvmsetup.sh --- source/custom/jvmsetup/loader/jvmsetup.sh 16 Feb 2003 22:12:27 -0000 1.4.46.1 +++ source/custom/jvmsetup/loader/jvmsetup.sh 19 Feb 2003 08:54:02 -0000 @@ -64,7 +64,7 @@ # resolve installation directory sd_platform=`uname -s` -if [ $sd_platform == "IRIX64" ]; then +if [ $sd_platform = "IRIX64" ]; then sd_platform=IRIX fi @@ -122,7 +122,7 @@ esac # extend the ld_library_path for java: javaldx checks the sofficerc for us java_ld_library_path=`"$sd_inst/program/javaldx" "$1" "$2" "$3" "$4" "$5" "$6" "$7" "$8" "$9"` if [ "$java_ld_library_path" != "" ] ; then - if [ $sd_platform == "IRIX" ] ; then + if [ $sd_platform = "IRIX" ] ; then LD_LIBRARYN32_PATH=${java_ld_library_path}:${LD_LIBRARYN32_PATH} else LD_LIBRARY_PATH=${java_ld_library_path}:${LD_LIBRARY_PATH}