-
Bug
-
Resolution: Fixed
-
P3
-
None
-
None
-
b113
-
generic
-
solaris
With the removal of solaris 32-bit the java-rmi.cgi is missed out in the solaris
build. The fix is very simple as follows:
diff --git a/makefiles/CompileLaunchers.gmk b/makefiles/CompileLaunchers.gmk
--- a/makefiles/CompileLaunchers.gmk
+++ b/makefiles/CompileLaunchers.gmk
@@ -576,9 +576,7 @@
BUILD_LAUNCHERS += $(JAVA_RMI_CGI)
endif
ifeq ($(OPENJDK_TARGET_OS), solaris)
- ifeq ($(OPENJDK_TARGET_CPU_BITS), 32)
- BUILD_LAUNCHERS += $(JAVA_RMI_CGI)
- endif
+ BUILD_LAUNCHERS += $(JAVA_RMI_CGI)
endif
build. The fix is very simple as follows:
diff --git a/makefiles/CompileLaunchers.gmk b/makefiles/CompileLaunchers.gmk
--- a/makefiles/CompileLaunchers.gmk
+++ b/makefiles/CompileLaunchers.gmk
@@ -576,9 +576,7 @@
BUILD_LAUNCHERS += $(JAVA_RMI_CGI)
endif
ifeq ($(OPENJDK_TARGET_OS), solaris)
- ifeq ($(OPENJDK_TARGET_CPU_BITS), 32)
- BUILD_LAUNCHERS += $(JAVA_RMI_CGI)
- endif
+ BUILD_LAUNCHERS += $(JAVA_RMI_CGI)
endif
- relates to
-
JDK-8023862 deprecate HTTP proxying from RMI
-
- Resolved
-