From 2be37e6f7b637a34b4ad1d88b417c8d885a9a606 Mon Sep 17 00:00:00 2001 From: Ryosuke Takahashi Date: Mon, 1 Sep 2025 13:54:10 +0900 Subject: [PATCH] BSim: fix malformed arguments to ./configure on macOS --- Ghidra/Features/BSim/support/make-postgres.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Ghidra/Features/BSim/support/make-postgres.sh b/Ghidra/Features/BSim/support/make-postgres.sh index a2ab060f69..5ab6cec265 100755 --- a/Ghidra/Features/BSim/support/make-postgres.sh +++ b/Ghidra/Features/BSim/support/make-postgres.sh @@ -92,8 +92,8 @@ if [ "$OS" = "Darwin" ]; then OSDIR="mac_arm_64" HOMEBREW="/opt/homebrew" fi - POSTGRES_CONFIG_OPTIONS+="--with-includes=${HOMEBREW}/include" - POSTGRES_CONFIG_OPTIONS+="--with-libraries=${HOMEBREW}/lib" + POSTGRES_CONFIG_OPTIONS+=" --with-includes=${HOMEBREW}/include" + POSTGRES_CONFIG_OPTIONS+=" --with-libraries=${HOMEBREW}/lib" elif [ "$ARCH" = "x86_64" ]; then OSDIR="linux_x86_64" elif [ "$ARCH" = "aarch64" ]; then