configure: Do not put arguments into double quotes
authorAndreas Schneider <asn@samba.org>
Mon, 2 Aug 2021 15:43:01 +0000 (17:43 +0200)
committerJule Anger <janger@samba.org>
Tue, 10 Aug 2021 11:40:12 +0000 (11:40 +0000)
commitde50dc5c3db243c926b4c10e5355ed47f7b593af
treea2585a10ab5ae35a5782ebd0fd4b61f5981722b3
parent4801b6c298bde2fed4a8abbf0de29c9d0edff563
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 <asn@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Autobuild-User(master): Andreas Schneider <asn@cryptomilk.org>
Autobuild-Date(master): Tue Aug  3 18:36:37 UTC 2021 on sn-devel-184

(cherry picked from commit e2962b4262fc4a7197a3fcbd010fcfaca781baea)
configure