The branch, master has been updated via e2962b4262f configure: Do not put arguments into double quotes from 93bac5f1224 winbindd_pam: add NT4 DC handling into winbind_samlogon_retry_loop()
https://git.samba.org/?p=samba.git;a=shortlog;h=master - Log ----------------------------------------------------------------- commit e2962b4262fc4a7197a3fcbd010fcfaca781baea Author: Andreas Schneider <a...@samba.org> Date: Mon Aug 2 17:43:01 2021 +0200 configure: Do not put arguments into double quotes BUG: https://bugzilla.samba.org/show_bug.cgi?id=14777 This could create an issue that arguments don't get split by python and then the following could happen: ./configure --libdir=/usr/lib64 --enable-clangdb LIBDIR='/usr/lib64 --enable-clangdb' This ends then up in parameters.all.xml: <!ENTITY pathconfig.LIBDIR '/usr/lib64 --enable-clangdb'> The python parser then errors out: xml.etree.ElementTree.ParseError: not well-formed (invalid token) Signed-off-by: Andreas Schneider <a...@samba.org> Reviewed-by: Andrew Bartlett <abart...@samba.org> Autobuild-User(master): Andreas Schneider <a...@cryptomilk.org> Autobuild-Date(master): Tue Aug 3 18:36:37 UTC 2021 on sn-devel-184 ----------------------------------------------------------------------- Summary of changes: configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Changeset truncated at 500 lines: diff --git a/configure b/configure index a6ca50feb47..2b0ffb0dae1 100755 --- a/configure +++ b/configure @@ -13,5 +13,5 @@ export JOBS unset LD_PRELOAD cd . || exit 1 -$PYTHON $WAF configure "$@" || exit 1 +$PYTHON $WAF configure $@ || exit 1 cd $PREVPATH -- Samba Shared Repository