Fixed incorrect Sparc path for Solaris library

This commit is contained in:
hedgecrw85 2018-12-20 10:31:09 -06:00
parent 5a6dbfd820
commit 62f566034d
1 changed files with 1 additions and 1 deletions

View File

@ -123,7 +123,7 @@ public final class SerialPort
if (System.getProperty("os.arch").indexOf("64") >= 0)
libraryPath = (System.getProperty("os.arch").indexOf("sparc") >= 0) ? "Solaris/sparcv9_64" : "Solaris/x86_64";
else
libraryPath = (System.getProperty("os.arch").indexOf("sparc") >= 0) ? "Solaris/sparcv8_32" : "Solaris/x86";
libraryPath = (System.getProperty("os.arch").indexOf("sparc") >= 0) ? "Solaris/sparcv8plus_32" : "Solaris/x86";
isUnixBased = true;
fileName = "libjSerialComm.so";
}