aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJukka Jylänki <jujjyl@gmail.com>2013-11-09 18:02:57 +0200
committerJukka Jylänki <jujjyl@gmail.com>2013-11-09 18:03:25 +0200
commit8ccb00a3d0e8d0679553db1cdcc66027e59bc41c (patch)
tree2f5a4fdefb2f5eec88e7d106bb9b1ced0e4ca8a5
parente0268fa1035a718341c53921eee9318d4a8033cd (diff)
Fix test_lua on Windows when built using mingw32-make. That tool got confused by a '#' comment at the end of a command line, so move the comment to its own separate line.
-rw-r--r--tests/lua/src/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/lua/src/Makefile b/tests/lua/src/Makefile
index 401e7367..a9cf0911 100644
--- a/tests/lua/src/Makefile
+++ b/tests/lua/src/Makefile
@@ -59,8 +59,9 @@ o: $(ALL_O)
a: $(ALL_A)
+# XXX EMSCRIPTEN: add AR_ARGS
$(LUA_A): $(BASE_O)
- $(AR) $(AR_ARGS) $@ $(BASE_O) # XXX EMSCRIPTEN: add AR_ARGS
+ $(AR) $(AR_ARGS) $@ $(BASE_O)
$(RANLIB) $@
$(LUA_T): $(LUA_O) $(LUA_A)