mirror of
https://github.com/postgres/postgres.git
synced 2026-06-13 18:50:17 -04: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:
parent
7bb78b2aca
commit
a986143c69
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue