diff options
author | Jukka Jylänki <jujjyl@gmail.com> | 2013-11-09 18:02:57 +0200 |
---|---|---|
committer | Jukka Jylänki <jujjyl@gmail.com> | 2013-11-09 18:03:25 +0200 |
commit | 8ccb00a3d0e8d0679553db1cdcc66027e59bc41c (patch) | |
tree | 2f5a4fdefb2f5eec88e7d106bb9b1ced0e4ca8a5 | |
parent | e0268fa1035a718341c53921eee9318d4a8033cd (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/Makefile | 3 |
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) |