Skip to content

Commit a4a7872

Browse files
committedAug 23, 2013
Fix python spawn scripts on Windows when the emscripten path contains spaces, like C:\Program Files\emscripten.
1 parent 2797427 commit a4a7872

8 files changed

+8
-8
lines changed
 

‎em++.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
@echo off
2-
python %~dp0\em++ %*
2+
python "%~dp0\em++" %*

‎em-config.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
@echo off
2-
python %~dp0\em-config %*
2+
python "%~dp0\em-config" %*

‎emar.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
@echo off
2-
python %~dp0\emar %*
2+
python "%~dp0\emar" %*

‎emcc.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
@echo off
2-
python %~dp0\emcc %*
2+
python "%~dp0\emcc" %*

‎emconfigure.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
@echo off
2-
python %~dp0\emconfigure %*
2+
python "%~dp0\emconfigure" %*

‎emlibtool.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
@echo off
2-
python %~dp0\emlibtool %*
2+
python "%~dp0\emlibtool" %*

‎emmake.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
@echo off
2-
python %~dp0\emmake %*
2+
python "%~dp0\emmake" %*

‎emranlib.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
@echo off
2-
python %~dp0\emranlib %*
2+
python "%~dp0\emranlib" %*

0 commit comments

Comments
 (0)