From: Uri Simchoni Date: Sat, 4 Sep 2021 08:01:56 +0000 (+0300) Subject: configure: allow configure script to accept parameters with spaces X-Git-Tag: ldb-2.5.0~756 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e608dcd2d6736505022d0f9d1e008333bb70f1af;p=thirdparty%2Fsamba.git configure: allow configure script to accept parameters with spaces Specifically this enables passing two linker flags to the --fuzz-target-ldflags configure argument. Signed-off-by: Uri Simchoni Reviewed-by: Andrew Bartlett --- diff --git a/configure b/configure index 2b0ffb0dae1..a6ca50feb47 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