diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-11-10 10:36:52 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-11-10 10:36:52 -0800 |
commit | 04cb7d5cab86f91c6f573b134f95b6ba74f101e7 (patch) | |
tree | 7069fe471258ecdad9aec056c154647808126a82 | |
parent | fb837edc43d0311bd1685026cf8929611c5aa4d7 (diff) | |
parent | 0d37bbee315eb06c9b326224d673bda0f4e9e338 (diff) |
Merge pull request #1779 from juj/fix_test_lua_spaces
Fix test_lua on Windows buildbot.
-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 |