< prev index next >

src/jdk.jpackage/windows/classes/jdk/jpackage/internal/WinMsiBundler.java

Print this page

        

@@ -1037,12 +1037,13 @@
 
         commandLine.add(getLightPath());
 
         commandLine.add("-nologo");
         commandLine.add("-spdb");
-        commandLine.add("-sice:60");
-                // ignore warnings due to "missing launcguage info" (ICE60)
+        if (!MSI_SYSTEM_WIDE.fetchFrom(params)) {
+            commandLine.add("-sice:ICE91");
+        }
         commandLine.add(candleOut.getAbsolutePath());
         commandLine.add("-ext");
         commandLine.add("WixUtilExtension");
         if (enableLicenseUI || enableInstalldirUI) {
             commandLine.add("-ext");
< prev index next >