build-system: BUGFIX: arguments to CMake/autotools must be quoted

This commit is contained in:
2024-04-17 15:04:49 +02:00
parent 7a16366549
commit 5c128f8e4d
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -782,7 +782,7 @@ pbuild::configure() {
local -a config_args=()
local -- arg=''
for arg in "${CONFIGURE_ARGS[@]}"; do
config_args+=( $(envsubst <<<"${arg}") )
config_args+=( "$(envsubst <<<"${arg}")" )
done
if [[ -r "${SRC_DIR}/configure" ]] && \
[[ "${configure_with}" == 'auto' ]] || \