diff --git a/run.n b/run.n index 380158e3e..b426849e2 100644 Binary files a/run.n and b/run.n differ diff --git a/script/src/RunScript.hx b/script/src/RunScript.hx index 1f6b04589..5e5b27d35 100644 --- a/script/src/RunScript.hx +++ b/script/src/RunScript.hx @@ -515,12 +515,6 @@ class RunScript { if (!flags.exists ("debug")) { - if (buildSharedLibs) { - - runCommand (sharedLibsPath, "neko", [ "build.n", "-Dwebos" ].concat (defines)); - - } - runCommand (path, "haxelib", [ "run", buildLib, buildFile, "-Dwebos" ].concat (defines)); synchronizeNDLL ("webOS/lime.so"); @@ -528,12 +522,6 @@ class RunScript { if (!flags.exists ("release")) { - if (buildSharedLibs) { - - runCommand (sharedLibsPath, "neko", [ "build.n", "-Dwebos", "-Dfulldebug" ].concat (defines)); - - } - runCommand (path, "haxelib", [ "run", buildLib, buildFile, "-Dwebos", "-Dfulldebug" ].concat (defines)); synchronizeNDLL ("webOS/lime-debug.so"); @@ -545,7 +533,7 @@ class RunScript { if (buildSharedLibs) { - runCommand (sharedLibsPath, "neko", [ "windows" ].concat (defines)); + runCommand (sharedLibsPath, "neko", [ "build.n", "windows" ].concat (defines)); } @@ -609,7 +597,7 @@ class RunScript { if (buildSharedLibs) { - runCommand (sharedLibsPath, "neko", [ "wiiu" ].concat (defines)); + runCommand (sharedLibsPath, "neko", [ "build.n", "wiiu" ].concat (defines)); }