From d5dc42bcacd3597fa562fc3cdafbaedc0236dd8a Mon Sep 17 00:00:00 2001 From: Steffen Siering Date: Tue, 30 Jul 2024 12:28:51 +0200 Subject: [PATCH] pgbuild: make meson patch optional (#87) postgres sources have been updated with a fix to the meson configuration. We do not need to apply our patch anymore. We still keep `patch` for users with older sources, but will not call that function anymore in the `configure` step. --- dev/bin/pgbuild | 2 -- 1 file changed, 2 deletions(-) diff --git a/dev/bin/pgbuild b/dev/bin/pgbuild index d76b184..8a99ad2 100755 --- a/dev/bin/pgbuild +++ b/dev/bin/pgbuild @@ -93,8 +93,6 @@ EOF configure() { echo "Configuring postgres build" - patch - meson setup "$PG_BUILD_DIR" "$PG_SRC_DIR" \ --debug \ -Dprefix="${PG_INSTALL_DIR}" \