BSim: fix malformed arguments to ./configure on macOS

This commit is contained in:
Ryosuke Takahashi 2025-09-01 13:54:10 +09:00
parent 7a4100d54b
commit 2be37e6f7b

View file

@ -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