diff options
author | davidovski <david@davidovski.xyz> | 2022-05-27 18:34:26 +0100 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-05-27 18:34:26 +0100 |
commit | 4615385d6c8203001962a7a31dd02cdb1a73544b (patch) | |
tree | 0ff0ea93838f9c39ee5a09066ad05d9567e31437 /repo/system/openjdk11/fix-bootjdk-check.patch | |
parent | 7b0628f037dcbf85cfb381d5e05dea39a2059d33 (diff) |
added tor
Diffstat (limited to 'repo/system/openjdk11/fix-bootjdk-check.patch')
-rw-r--r-- | repo/system/openjdk11/fix-bootjdk-check.patch | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/repo/system/openjdk11/fix-bootjdk-check.patch b/repo/system/openjdk11/fix-bootjdk-check.patch deleted file mode 100644 index b34a1b2..0000000 --- a/repo/system/openjdk11/fix-bootjdk-check.patch +++ /dev/null @@ -1,19 +0,0 @@ -Subject: Fix detection of bootjdk on configure -Upstream: No -Author: Simon Frankenberger <simon-alpine@fraho.eu> - -The alpine builders print out a warning about sched_getaffinity() not working. -This causes the version check for the boot jdk to fail. -Patch the command to determine the version number to ignore any errors and warnings. - ---- old/make/autoconf/boot-jdk.m4 -+++ new/make/autoconf/boot-jdk.m4 -@@ -74,7 +74,7 @@ - BOOT_JDK_FOUND=no - else - # Oh, this is looking good! We probably have found a proper JDK. Is it the correct version? -- BOOT_JDK_VERSION=`"$BOOT_JDK/bin/java" -version 2>&1 | $HEAD -n 1` -+ BOOT_JDK_VERSION=`"$BOOT_JDK/bin/java" -version 2>&1 | $GREP version | $HEAD -n 1` - - # Extra M4 quote needed to protect [] in grep expression. - [FOUND_CORRECT_VERSION=`$ECHO $BOOT_JDK_VERSION \ |