Commit e5b5739a authored by Andrew Dunstan's avatar Andrew Dunstan

Use proper search for contrib makefiles in vcregress.pl

parent 3f2a191b
# -*-perl-*- hey - emacs - this is a perl file # -*-perl-*- hey - emacs - this is a perl file
# $PostgreSQL: pgsql/src/tools/msvc/vcregress.pl,v 1.2 2007/09/24 21:14:54 adunstan Exp $ # $PostgreSQL: pgsql/src/tools/msvc/vcregress.pl,v 1.3 2007/09/24 21:42:34 adunstan Exp $
use strict; use strict;
...@@ -188,7 +188,9 @@ sub contribcheck ...@@ -188,7 +188,9 @@ sub contribcheck
my $mstat = 0; my $mstat = 0;
foreach my $module (glob("*")) foreach my $module (glob("*"))
{ {
next unless -d "$module/sql" && -d "$module/expected" && -f "Makefile"; next unless -d "$module/sql" &&
-d "$module/expected" &&
(-f "$module/Makefile" || -f "$module/GNUmakefile");
chdir $module; chdir $module;
print "============================================================\n"; print "============================================================\n";
print "Checking $module\n"; print "Checking $module\n";
...@@ -211,7 +213,7 @@ sub fetchTests ...@@ -211,7 +213,7 @@ sub fetchTests
my $handle; my $handle;
open($handle,"<Makefile") open($handle,"<Makefile")
|| open($handle,"<GNUMakefile") || open($handle,"<GNUmakefile")
|| die "Could not open Makefile"; || die "Could not open Makefile";
local($/) = undef; local($/) = undef;
my $m = <$handle>; my $m = <$handle>;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment