projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7bb78b2
)
Do not pass "-N" to initdb.
author
Noah Misch
Fri, 26 Dec 2014 05:56:14 +0000
(
00:56
-0500)
committer
Noah Misch
Fri, 26 Dec 2014 05:56:14 +0000
(
00:56
-0500)
Per buildfarm member hamerkop. Oversight in 9.2 back-patch of commit
f6dc6dd5ba54d52c0733aaafc50da2fbaeabb8b0
; earlier versions lack the
affected test suite, and later versions have the "-N" option.
src/tools/msvc/vcregress.pl
patch
|
blob
|
blame
|
history
diff --git
a/src/tools/msvc/vcregress.pl
b/src/tools/msvc/vcregress.pl
index 853d60ff05fd45873952b68bfd98bccba6a26518..adbfa9f8db959e8ad2b64f13ce3626618ceb96fc 100644
(file)
--- a/
src/tools/msvc/vcregress.pl
+++ b/
src/tools/msvc/vcregress.pl
@@
-245,7
+245,7
@@
sub contribcheck
sub standard_initdb
{
return (
- system('initdb'
, '-N'
) == 0 and system(
+ system('initdb') == 0 and system(
"$topdir/$Config/pg_regress/pg_regress", '--config-auth',
$ENV{PGDATA}) == 0);
}