From ccf8c48923b7e0eaf15ed5f8636a67c8ae9a6b1a Mon Sep 17 00:00:00 2001 From: Joshua Granick Date: Tue, 14 Aug 2018 09:08:50 -0700 Subject: [PATCH] Remove forced -Ddisplay on 'lime display' output --- tools/platforms/AIRPlatform.hx | 2 +- tools/platforms/AndroidPlatform.hx | 2 +- tools/platforms/EmscriptenPlatform.hx | 1 - tools/platforms/FlashPlatform.hx | 2 +- tools/platforms/HTML5Platform.hx | 2 +- tools/platforms/IOSPlatform.hx | 2 +- tools/platforms/LinuxPlatform.hx | 2 +- tools/platforms/MacPlatform.hx | 2 +- tools/platforms/TVOSPlatform.hx | 2 +- tools/platforms/TizenPlatform.hx | 1 - tools/platforms/WindowsPlatform.hx | 2 +- 11 files changed, 9 insertions(+), 11 deletions(-) diff --git a/tools/platforms/AIRPlatform.hx b/tools/platforms/AIRPlatform.hx index bc6b2ae0d..8638b7d0b 100644 --- a/tools/platforms/AIRPlatform.hx +++ b/tools/platforms/AIRPlatform.hx @@ -210,7 +210,7 @@ class AIRPlatform extends FlashPlatform { var template = new Template (File.getContent (hxml)); - return template.execute (context) + "\n-D display"; + return template.execute (context); } diff --git a/tools/platforms/AndroidPlatform.hx b/tools/platforms/AndroidPlatform.hx index 48ba7d7b9..edac9a73d 100644 --- a/tools/platforms/AndroidPlatform.hx +++ b/tools/platforms/AndroidPlatform.hx @@ -212,7 +212,7 @@ class AndroidPlatform extends PlatformTarget { var template = new Template (File.getContent (hxml)); - return template.execute (context) + "\n-D display"; + return template.execute (context); } diff --git a/tools/platforms/EmscriptenPlatform.hx b/tools/platforms/EmscriptenPlatform.hx index 3b844ff39..db3a8aaeb 100644 --- a/tools/platforms/EmscriptenPlatform.hx +++ b/tools/platforms/EmscriptenPlatform.hx @@ -267,7 +267,6 @@ class EmscriptenPlatform extends PlatformTarget { var template = new Template (File.getContent (hxml)); Sys.println (template.execute (context)); - Sys.println ("-D display"); } diff --git a/tools/platforms/FlashPlatform.hx b/tools/platforms/FlashPlatform.hx index 116c9062e..d953d4217 100644 --- a/tools/platforms/FlashPlatform.hx +++ b/tools/platforms/FlashPlatform.hx @@ -129,7 +129,7 @@ class FlashPlatform extends PlatformTarget { var template = new Template (File.getContent (hxml)); - return template.execute (context) + "\n-D display"; + return template.execute (context); } diff --git a/tools/platforms/HTML5Platform.hx b/tools/platforms/HTML5Platform.hx index 3f6f029b0..bb7aee05d 100644 --- a/tools/platforms/HTML5Platform.hx +++ b/tools/platforms/HTML5Platform.hx @@ -141,7 +141,7 @@ class HTML5Platform extends PlatformTarget { var template = new Template (File.getContent (hxml)); - return template.execute (context) + "\n-D display"; + return template.execute (context); } diff --git a/tools/platforms/IOSPlatform.hx b/tools/platforms/IOSPlatform.hx index 1d048f558..5213d6580 100644 --- a/tools/platforms/IOSPlatform.hx +++ b/tools/platforms/IOSPlatform.hx @@ -404,7 +404,7 @@ class IOSPlatform extends PlatformTarget { var context = generateContext (); context.OUTPUT_DIR = targetDirectory; - return template.execute (context) + "\n-D display"; + return template.execute (context); } diff --git a/tools/platforms/LinuxPlatform.hx b/tools/platforms/LinuxPlatform.hx index 0c01d5e1e..cbaa02ae9 100644 --- a/tools/platforms/LinuxPlatform.hx +++ b/tools/platforms/LinuxPlatform.hx @@ -284,7 +284,7 @@ class LinuxPlatform extends PlatformTarget { var context = generateContext (); context.OUTPUT_DIR = targetDirectory; - return template.execute (context) + "\n-D display"; + return template.execute (context); } diff --git a/tools/platforms/MacPlatform.hx b/tools/platforms/MacPlatform.hx index f96028d4f..94d845559 100644 --- a/tools/platforms/MacPlatform.hx +++ b/tools/platforms/MacPlatform.hx @@ -258,7 +258,7 @@ class MacPlatform extends PlatformTarget { var context = generateContext (); context.OUTPUT_DIR = targetDirectory; - return template.execute (context) + "\n-D display"; + return template.execute (context); } diff --git a/tools/platforms/TVOSPlatform.hx b/tools/platforms/TVOSPlatform.hx index 0dd33a1d6..ec1bf7165 100644 --- a/tools/platforms/TVOSPlatform.hx +++ b/tools/platforms/TVOSPlatform.hx @@ -327,7 +327,7 @@ class TVOSPlatform extends PlatformTarget { var context = generateContext (); context.OUTPUT_DIR = targetDirectory; - return template.execute (context) + "\n-D display"; + return template.execute (context); } diff --git a/tools/platforms/TizenPlatform.hx b/tools/platforms/TizenPlatform.hx index 3f48aad43..134d3f9cc 100644 --- a/tools/platforms/TizenPlatform.hx +++ b/tools/platforms/TizenPlatform.hx @@ -103,7 +103,6 @@ class TizenPlatform extends PlatformTarget { var template = new Template (File.getContent (hxml)); Sys.println (template.execute (context)); - Sys.println ("-D display"); } diff --git a/tools/platforms/WindowsPlatform.hx b/tools/platforms/WindowsPlatform.hx index 90f51591b..e3e8fa7d4 100644 --- a/tools/platforms/WindowsPlatform.hx +++ b/tools/platforms/WindowsPlatform.hx @@ -388,7 +388,7 @@ class WindowsPlatform extends PlatformTarget { var context = generateContext (); context.OUTPUT_DIR = targetDirectory; - return template.execute (context) + "\n-D display"; + return template.execute (context); }