mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 15:56:50 +01:00
openjdk: build with empty pre-version (#92947)
The removes the "-internal" suffix from the OpenJDK version string. Some applications, like the Jetbrains IDEs, check for a suffix to determine if a stable JDK is used. Thanks to @liff for the hint in #92837!
This commit is contained in:
parent
194d749582
commit
56fcf7891b
3 changed files with 3 additions and 0 deletions
|
@ -47,6 +47,7 @@ let
|
|||
|
||||
configureFlags = [
|
||||
"--with-boot-jdk=${openjdk11-bootstrap.home}"
|
||||
"--with-version-pre="
|
||||
"--enable-unlimited-crypto"
|
||||
"--with-native-debug-symbols=internal"
|
||||
"--with-libjpeg=system"
|
||||
|
|
|
@ -55,6 +55,7 @@ let
|
|||
|
||||
configureFlags = [
|
||||
"--with-boot-jdk=${openjdk11.home}"
|
||||
"--with-version-pre="
|
||||
"--enable-unlimited-crypto"
|
||||
"--with-native-debug-symbols=internal"
|
||||
"--with-libjpeg=system"
|
||||
|
|
|
@ -55,6 +55,7 @@ let
|
|||
|
||||
configureFlags = [
|
||||
"--with-boot-jdk=${openjdk13-bootstrap.home}"
|
||||
"--with-version-pre="
|
||||
"--enable-unlimited-crypto"
|
||||
"--with-native-debug-symbols=internal"
|
||||
"--with-libjpeg=system"
|
||||
|
|
Loading…
Reference in a new issue