diff options
author | Jukka Jylänki <jujjyl@gmail.com> | 2013-11-10 14:48:56 +0200 |
---|---|---|
committer | Jukka Jylänki <jujjyl@gmail.com> | 2013-11-10 14:50:11 +0200 |
commit | 0d37bbee315eb06c9b326224d673bda0f4e9e338 (patch) | |
tree | b979e92f88e041c17998279527aa47cbcff212b1 | |
parent | d446e2b3c3b96474106b9bd47f35d901abb14f6d (diff) |
Fix Makefile in test_lua in the case when make is in a path that contains spaces (e.g. c:\program files\emscripten\...\mingw32-make).
-rw-r--r-- | tests/lua/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/lua/Makefile b/tests/lua/Makefile index bd9515fd..9f0a2edd 100644 --- a/tests/lua/Makefile +++ b/tests/lua/Makefile @@ -51,8 +51,9 @@ R= $V.1 # Targets start here. all: $(PLAT) +# XXX Emscripten Added quotes to $(MAKE) to properly call make when the path contains spaces $(PLATS) clean: - cd src && $(MAKE) $@ + cd src && "$(MAKE)" $@ test: dummy src/lua -v |