Revision: 86 http://trac.macosforge.org/projects/libdispatch/changeset/86 Author: robert@fledge.watson.org Date: 2009-11-02 04:22:21 -0800 (Mon, 02 Nov 2009) Log Message: ----------- When Makefile.darwin runs itself recursively, make sure to tell make to use Makefile.darwin. Modified Paths: -------------- trunk/testing/Makefile.darwin Modified: trunk/testing/Makefile.darwin =================================================================== --- trunk/testing/Makefile.darwin 2009-11-02 12:16:00 UTC (rev 85) +++ trunk/testing/Makefile.darwin 2009-11-02 12:22:21 UTC (rev 86) @@ -1,4 +1,7 @@ # No workie: dispatch_sema + +MAKECMD= $(MAKE) -f Makefile.darwin + TESTS= dispatch_apply \ dispatch_api \ dispatch_c99 \ @@ -29,10 +32,10 @@ debuglogs: $(addsuffix .debuglog, $(TESTS)) testbots: - $(MAKE) test + $(MAKECMD) test test: clean-logs - $(MAKE) _test + $(MAKECMD) _test _test: all logs debuglogs @cat *.testlog *.debuglog
participants (1)
-
source_changes@macosforge.org