hi,

attached a patch that changes the file json.in. Currently, when doing nmake test, it won't work (windows), as the changing to the test directory and calling prove is separated by a ';'. This patch changes it in &&.

I send this as a patch, because I don't know if it works for other systems (but I think it does).
(Just to prevent breaking things)

regards
kjs
Index: config/gen/makefiles/json.in
===================================================================
--- config/gen/makefiles/json.in	(revision 18038)
+++ config/gen/makefiles/json.in	(working copy)
@@ -30,7 +30,7 @@
 	@echo ""
 
 test: all
-	cd $(TOOL_DIR); prove -r t/compilers/json
+	cd $(TOOL_DIR) && prove -r t/compilers/json
 
 testclean:
 	$(RM_RF) "../../t/compilers/json/*.pir" \

Reply via email to