summaryrefslogtreecommitdiff
path: root/java/openjdk11/files
diff options
context:
space:
mode:
Diffstat (limited to 'java/openjdk11/files')
-rw-r--r--java/openjdk11/files/patch-make-autoconf-build-performance.m413
1 files changed, 0 insertions, 13 deletions
diff --git a/java/openjdk11/files/patch-make-autoconf-build-performance.m4 b/java/openjdk11/files/patch-make-autoconf-build-performance.m4
deleted file mode 100644
index 04aa1f5e707a..000000000000
--- a/java/openjdk11/files/patch-make-autoconf-build-performance.m4
+++ /dev/null
@@ -1,13 +0,0 @@
---- make/autoconf/build-performance.m4
-+++ make/autoconf/build-performance.m4
-@@ -41,6 +41,10 @@ AC_DEFUN([BPERF_CHECK_CORES],
- # Looks like a MacOSX system
- NUM_CORES=`/usr/sbin/sysctl -n hw.ncpu`
- FOUND_CORES=yes
-+ elif test -x /sbin/sysctl; then
-+ # Looks like a BSD system
-+ NUM_CORES=`/sbin/sysctl -n hw.ncpu`
-+ FOUND_CORES=yes
- elif test "x$OPENJDK_BUILD_OS" = xaix ; then
- NUM_CORES=`/usr/sbin/prtconf | grep "^Number Of Processors" | awk '{ print [$]4 }'`
- FOUND_CORES=yes