We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parentec49d63 commitb9ce9eeCopy full SHA for b9ce9ee
build/helpers/postgres.cmd
@@ -99,6 +99,11 @@ rem We need ICONV and LibIntl DLLS available during install for ZIC to work
99
rem no need to copy them, just add to PATH
100
PATH%PATH%;%DEPENDENCIES_BIN_DIR%\libintl\lib;%DEPENDENCIES_BIN_DIR%\iconv\lib
101
%PERL_EXE% install.pl%BUILD_DIR%\distr_%ARCH%_%PGVER%\postgresql||GOTO :ERROR
102
+
103
+REM remove test_* extensions after install
104
+rm -rf%BUILD_DIR%\distr_%ARCH%_%PGVER%\postgresql\share\extension\test_*||GOTO :ERROR
105
+rm -rf%BUILD_DIR%\distr_%ARCH%_%PGVER%\postgresql\lib\test_*||GOTO :ERROR
106
107
rem now actually copy DLLs of dependencies into our bindir
108
cp -va%DEPENDENCIES_BIN_DIR%/libintl/lib/*.dll%BUILD_DIR%\distr_%ARCH%_%PGVER%\postgresql\bin||GOTO :ERROR
109
cp -va%DEPENDENCIES_BIN_DIR%/iconv/lib/*.dll%BUILD_DIR%\distr_%ARCH%_%PGVER%\postgresql\bin||GOTO :ERROR