1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-30 11:03:19 +03:00

Do not pass "-N" to initdb.

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.
This commit is contained in:
Noah Misch
2014-12-26 00:56:14 -05:00
parent 7bb78b2aca
commit a986143c69

View File

@ -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);
}