about summary refs log tree commit homepage
diff options
context:
space:
mode:
authorEric Wong <bofh@yhbt.net>2023-06-06 11:44:29 +0000
committerEW <bofh@yhbt.net>2023-06-20 10:38:47 +0000
commit669d826f1d60dc682fa5a10adb2b2e171c7255ce (patch)
tree7cc01a639239830d10c0f8e0e638ec2778a8180b
parent76e1a91ec9c5b62bc65628c3e19a77a175f30f5c (diff)
downloadunicorn-669d826f1d60dc682fa5a10adb2b2e171c7255ce.tar.gz
Allow overriding `PROVE=' while we're at it, too; since
development installations of Perl5 may name it `prove5.$MINOR'
or similar.
-rw-r--r--GNUmakefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/GNUmakefile b/GNUmakefile
index eab9082..70e7e10 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -11,6 +11,7 @@ RSYNC = rsync
 OLDDOC = olddoc
 RDOC = rdoc
 INSTALL = install
+PROVE = prove
 
 GIT-VERSION-FILE: .FORCE-GIT-VERSION-FILE
         @./GIT-VERSION-GEN
@@ -141,8 +142,8 @@ t/random_blob:
 
 test-integration: $(T_sh)
 
-test-prove:
-        prove -vw
+test-prove: t/random_blob
+        $(PROVE) -vw
 
 check: test-require test test-integration
 test-all: check