|
@@ -66,7 +66,7 @@ class XMakeConfiguration(val project: Project) {
|
|
get() {
|
|
get() {
|
|
|
|
|
|
// make parameters
|
|
// make parameters
|
|
- val parameters = mutableListOf("f", "-c", "-y", "--policies=run.autobuild")
|
|
|
|
|
|
+ val parameters = mutableListOf("f", "-c", "-y")
|
|
if (configuration.enableVerbose) {
|
|
if (configuration.enableVerbose) {
|
|
parameters.add("-v")
|
|
parameters.add("-v")
|
|
}
|
|
}
|
|
@@ -89,8 +89,7 @@ class XMakeConfiguration(val project: Project) {
|
|
"f",
|
|
"f",
|
|
"-y",
|
|
"-y",
|
|
"-m",
|
|
"-m",
|
|
- configuration.runMode,
|
|
|
|
- "--policies=run.autobuild"
|
|
|
|
|
|
+ configuration.runMode
|
|
)
|
|
)
|
|
if (configuration.runPlatform != "default") {
|
|
if (configuration.runPlatform != "default") {
|
|
parameters.addAll(listOf("-p", configuration.runPlatform))
|
|
parameters.addAll(listOf("-p", configuration.runPlatform))
|