< prev index next >

make/conf/jib-profiles.js

Print this page

        

@@ -660,10 +660,20 @@
                 "\/GPL\/", "/BCL/",
                 (artifact.remote != null ? artifact.remote : artifact.local));
         }
     });
 
+    // For open profiles, the non-debug jdk bundles, need an "open" prefix on the
+    // remote bundle names, forming the word "openjdk". See JDK-8188789.
+    common.main_profile_names.forEach(function (name) {
+        var openName = name + common.open_suffix;
+        profiles[openName].artifacts["jdk"].remote = replaceAll(
+            "\/jdk-", "/openjdk-",
+            replaceAll("\/\\1", "/open\\1",
+                       profiles[openName].artifacts["jdk"].remote));
+    });
+
     // The windows ri profile needs to add the freetype license file
     profilesRiFreetype = {
         "windows-x86-ri": {
             configure_args: "--with-freetype-license="
                 + input.get("freetype", "install_path")
< prev index next >