We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent3f2a191 commite5b5739Copy full SHA for e5b5739
src/tools/msvc/vcregress.pl
@@ -1,7 +1,7 @@
1
2
# -*-perl-*- hey - emacs - this is a perl file
3
4
-# $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 $
5
6
use strict;
7
@@ -188,7 +188,9 @@ sub contribcheck
188
my$mstat = 0;
189
foreachmy$module (glob("*"))
190
{
191
-nextunless-d"$module/sql" &&-d"$module/expected" &&-f"Makefile";
+nextunless-d"$module/sql" &&
192
+-d"$module/expected" &&
193
+(-f"$module/Makefile" ||-f"$module/GNUmakefile");
194
chdir$module;
195
print"============================================================\n";
196
print"Checking$module\n";
@@ -211,7 +213,7 @@ sub fetchTests
211
213
212
214
my$handle;
215
open($handle,"<Makefile")
- ||open($handle,"<GNUMakefile")
216
+ ||open($handle,"<GNUmakefile")
217
||die"Could not open Makefile";
218
local($/) =undef;
219
my$m = <$handle>;