Skip to content

Commit

Permalink
Fix python spawn scripts on Windows when the emscripten path contains…
Browse files Browse the repository at this point in the history
… spaces, like C:\Program Files\emscripten.
  • Loading branch information
juj committed Aug 23, 2013
1 parent 2797427 commit a4a7872
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion em++.bat
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
@echo off
python %~dp0\em++ %*
python "%~dp0\em++" %*
2 changes: 1 addition & 1 deletion em-config.bat
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
@echo off
python %~dp0\em-config %*
python "%~dp0\em-config" %*
2 changes: 1 addition & 1 deletion emar.bat
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
@echo off
python %~dp0\emar %*
python "%~dp0\emar" %*
2 changes: 1 addition & 1 deletion emcc.bat
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
@echo off
python %~dp0\emcc %*
python "%~dp0\emcc" %*
2 changes: 1 addition & 1 deletion emconfigure.bat
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
@echo off
python %~dp0\emconfigure %*
python "%~dp0\emconfigure" %*
2 changes: 1 addition & 1 deletion emlibtool.bat
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
@echo off
python %~dp0\emlibtool %*
python "%~dp0\emlibtool" %*
2 changes: 1 addition & 1 deletion emmake.bat
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
@echo off
python %~dp0\emmake %*
python "%~dp0\emmake" %*
2 changes: 1 addition & 1 deletion emranlib.bat
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
@echo off
python %~dp0\emranlib %*
python "%~dp0\emranlib" %*

0 comments on commit a4a7872

Please sign in to comment.