diff --git a/build/groovy/ProductProperties.groovy b/build/groovy/ProductProperties.groovy index 837061832536..e10550e142da 100644 --- a/build/groovy/ProductProperties.groovy +++ b/build/groovy/ProductProperties.groovy @@ -33,7 +33,6 @@ public abstract class ProductProperties { abstract def String systemSelector() - String exe_selector = null String exe_launcher_properties String exe64_launcher_properties String platformPrefix = null diff --git a/build/scripts/dist.gant b/build/scripts/dist.gant index 549e21090bda..9a6a4ad6f468 100644 --- a/build/scripts/dist.gant +++ b/build/scripts/dist.gant @@ -228,9 +228,9 @@ private layoutWin(Map args, String home, Paths paths) { List resourcePaths = ["$home/${appInfoModulePath}/src", "$home/platform/icons/src"] buildWinLauncher(home, "$home/bin/WinLauncher/WinLauncher.exe", "$target/bin/${name}.exe", appInfoFile(), - productProperties.exe_launcher_properties, productProperties.exe_selector, resourcePaths) + productProperties.exe_launcher_properties, productProperties.systemSelector(), resourcePaths) buildWinLauncher(home, "$home/bin/WinLauncher/WinLauncher64.exe", "$target/bin/${name}64.exe", appInfoFile(), - productProperties.exe64_launcher_properties, productProperties.exe_selector, resourcePaths) + productProperties.exe64_launcher_properties, productProperties.systemSelector(), resourcePaths) productProperties.customWinLayout(target) }