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:
@ -245,7 +245,7 @@ sub contribcheck
|
|||||||
sub standard_initdb
|
sub standard_initdb
|
||||||
{
|
{
|
||||||
return (
|
return (
|
||||||
system('initdb', '-N') == 0 and system(
|
system('initdb') == 0 and system(
|
||||||
"$topdir/$Config/pg_regress/pg_regress", '--config-auth',
|
"$topdir/$Config/pg_regress/pg_regress", '--config-auth',
|
||||||
$ENV{PGDATA}) == 0);
|
$ENV{PGDATA}) == 0);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user