> Apache-Test and ModPerl-Registry Makefile's both have:
>
> TEST_VERBOSE ?= 0
>
> Deleting the "?" fixes it.
ok, here is a different syntax, suggested by the GNU manual. can you win32
guys give it a whirl and see if it works?
thanks
--Geoff
Index: lib/Apache/TestMM.pm
===================================================================
RCS file: /home/cvs/httpd-test/perl-framework/Apache-Test/lib/Apache/TestMM.pm,v
retrieving revision 1.42
diff -u -r1.42 TestMM.pm
--- lib/Apache/TestMM.pm 26 Oct 2004 01:42:14 -0000 1.42
+++ lib/Apache/TestMM.pm 4 Nov 2004 17:41:18 -0000
@@ -82,7 +82,10 @@
}
return $preamble . <<'EOF' . $cover;
-TEST_VERBOSE = 0
+ifeq ($(origin TEST_VERBOSE), undefined)
+ TEST_VERBOSE = 0
+endif
+
TEST_FILES =
test_clean :
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]