Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit c8d7b40

Browse files
committed
Added buildfix for PG12
1 parent b980c36 commit c8d7b40

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

build/helpers/postgres_nsis_installer.cmd

+4
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,10 @@ IF "%PG_MAJOR_VERSION%" == "9.6" (
113113
cat server.files > allserver.files
114114
type client.files > allclient.files
115115
)
116+
IF "%PG_MAJOR_VERSION%" == "12" (
117+
sed "s/pg_verify_checksums/pg_checksums/" allserver.files > allserver-12.files
118+
mv allserver-12.files allserver.files
119+
)
116120

117121
rem expand pattern lists to actual file lists
118122
%PYTHON64_PATH%/python %ROOT%/build/helpers/genlists.py %PG_INS_SOURCE_DIR% allclient.files devel.files plperl.files plpython2.files plpython3.files unneeded.files allserver.files || GOTO :ERROR

0 commit comments

Comments
 (0)