]> git.ipfire.org Git - thirdparty/postgresql.git/commitdiff
Do not pass "-N" to initdb.
authorNoah Misch <noah@leadboat.com>
Fri, 26 Dec 2014 05:56:14 +0000 (00:56 -0500)
committerNoah Misch <noah@leadboat.com>
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

index 853d60ff05fd45873952b68bfd98bccba6a26518..adbfa9f8db959e8ad2b64f13ce3626618ceb96fc 100644 (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);
 }