From a3387a9e22285abb179b3ce8c7f52052948c2600 Mon Sep 17 00:00:00 2001 From: George Marques Date: Thu, 9 Nov 2017 16:06:44 -0200 Subject: UWP: Update to build with Windows SDK 10.16229.0 - Update the OpenSSL shim to work with the new SDK - Change the ARM platform detection to work with VS2017 --- platform/uwp/detect.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'platform/uwp') diff --git a/platform/uwp/detect.py b/platform/uwp/detect.py index af53f97446..434c597449 100644 --- a/platform/uwp/detect.py +++ b/platform/uwp/detect.py @@ -84,7 +84,7 @@ def configure(env): ## Architecture arch = "" - if os.getenv('Platform') == "ARM": + if str(os.getenv('Platform')).lower() == "arm": print("Compiled program architecture will be an ARM executable. (forcing bits=32).") -- cgit v1.2.3