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 parentb0a688c commitd6036d8Copy full SHA for d6036d8
build/helpers/postgres.cmd
@@ -104,6 +104,10 @@ REM remove test_* extensions after install
104
rm -rf%BUILD_UDIR%/distr_%ARCH%_%PGVER%/postgresql/share/extension/test_*||GOTO :ERROR
105
rm -rf%BUILD_UDIR%/distr_%ARCH%_%PGVER%/postgresql/lib/test_*||GOTO :ERROR
106
107
+REM remove python3 extensions
108
+rm -rf%BUILD_UDIR%/distr_%ARCH%_%PGVER%/postgresql/share/extension/*python3*||GOTO :ERROR
109
+rm -rf%BUILD_UDIR%/distr_%ARCH%_%PGVER%/postgresql/lib/*python3*||GOTO :ERROR
110
+
111
rem now actually copy DLLs of dependencies into our bindir
112
cp -va%DEPENDENCIES_BIN_DIR%/libintl/lib/*.dll%BUILD_DIR%\distr_%ARCH%_%PGVER%\postgresql\bin||GOTO :ERROR
113
cp -va%DEPENDENCIES_BIN_DIR%/iconv/lib/*.dll%BUILD_DIR%\distr_%ARCH%_%PGVER%\postgresql\bin||GOTO :ERROR