summaryrefslogtreecommitdiff
path: root/t/porting/authors.t
diff options
context:
space:
mode:
Diffstat (limited to 't/porting/authors.t')
-rw-r--r--t/porting/authors.t3
1 files changed, 2 insertions, 1 deletions
diff --git a/t/porting/authors.t b/t/porting/authors.t
index da8cf953ea..76aac55c85 100644
--- a/t/porting/authors.t
+++ b/t/porting/authors.t
@@ -14,6 +14,7 @@ if (! -d '.git' ) {
exit 0;
}
-system("git log --pretty=fuller | ./perl -Ilib Porting/checkAUTHORS.pl --tap --acknowledged AUTHORS -");
+my $dotslash = $^O eq "MSWin32" ? ".\\" : "./";
+system("git log --pretty=fuller | ${dotslash}perl -Ilib Porting/checkAUTHORS.pl --tap --acknowledged AUTHORS -");
# EOF