From e608dcd2d6736505022d0f9d1e008333bb70f1af Mon Sep 17 00:00:00 2001 From: Uri Simchoni Date: Sat, 4 Sep 2021 11:01:56 +0300 Subject: [PATCH] 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 --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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