Skip to content

Commit 8ee4b53

Browse files
committed
Remove renaming of x86 for BSD
We're not supporting 32 bit x86 builds anyway, so we don't need this change. This work was sponsored by The FreeBSD Foundation
1 parent 748c5ce commit 8ee4b53

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

make/autoconf/platform.m4

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -493,9 +493,8 @@ AC_DEFUN([PLATFORM_SETUP_LEGACY_VARS_HELPER],
493493
494494
# Setup OPENJDK_$1_CPU_OSARCH, which is used to set the os.arch Java system property
495495
OPENJDK_$1_CPU_OSARCH="$OPENJDK_$1_CPU"
496-
if test "x$OPENJDK_$1_OS" = xbsd -o "x$OPENJDK_$1_OS" = xlinux \
497-
&& test "x$OPENJDK_$1_CPU" = xx86; then
498-
# On linux and BSD only, we replace x86 with i386.
496+
if test "x$OPENJDK_$1_OS" = xlinux && test "x$OPENJDK_$1_CPU" = xx86; then
497+
# On linux only, we replace x86 with i386.
499498
OPENJDK_$1_CPU_OSARCH="i386"
500499
elif test "x$OPENJDK_$1_OS" != xmacosx && test "x$OPENJDK_$1_CPU" = xx86_64; then
501500
# On all platforms except macosx, we replace x86_64 with amd64.

0 commit comments

Comments
 (0)