Comment the AArch64 fix
This commit is contained in:
parent
625a7c879d
commit
5156526f1b
1 changed files with 5 additions and 2 deletions
|
|
@ -71,13 +71,16 @@ class JavaConfig {
|
|||
}
|
||||
|
||||
/* The java.library.path does not work since JDK 1.7. See
|
||||
* <https://bugzilla.redhat.com/show_bug.cgi?id=740762>. */
|
||||
* <https://bugzilla.redhat.com/show_bug.cgi?id=740762>.
|
||||
* The "client" subdirectory is need on AArch64 since JDK 1.8. See
|
||||
* <https://bugzilla.redhat.com/show_bug.cgi?id=1112012>. */
|
||||
if (null == architecture || null == home || null == filesep) {
|
||||
return null;
|
||||
}
|
||||
value = value + ":" +
|
||||
home + filesep + "lib" + filesep + architecture + ":" +
|
||||
home + filesep + "lib" + filesep + architecture + filesep + "server:" +
|
||||
home + filesep + "lib" + filesep + architecture + filesep + "server" +
|
||||
":" +
|
||||
home + filesep + "lib" + filesep + architecture + filesep + "client";
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue