Skip to content

Commit 2a68987

Browse files
authored
Remove non-ascii char from emsdk.py. NFC (#1014)
This was introduced by mistake in #996 and causes Emsdk.test_no_32bit to fail.
1 parent 497595e commit 2a68987

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

emsdk.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1034,7 +1034,7 @@ def cmake_configure(generator, build_root, src_root, build_type, extra_cmake_arg
10341034

10351035
cmdline = ['cmake'] + generator + ['-DCMAKE_BUILD_TYPE=' + build_type, '-DPYTHON_EXECUTABLE=' + sys.executable]
10361036
# Target macOS 10.14 at minimum, to support widest range of Mac devices from "Early 2008" and newer:
1037-
# https://en.wikipedia.org/wiki/MacBook_(20062012)#Supported_operating_systems
1037+
# https://en.wikipedia.org/wiki/MacBook_(2006-2012)#Supported_operating_systems
10381038
cmdline += ['-DCMAKE_OSX_DEPLOYMENT_TARGET=10.14']
10391039
cmdline += extra_cmake_args + [src_root]
10401040

0 commit comments

Comments
 (0)