From 82c05711204ee4a997499386167a5e6b0b1d8fa2 Mon Sep 17 00:00:00 2001 From: Mobin Date: Sat, 8 Jul 2023 12:56:43 +0330 Subject: configure: Catch all of variable values If variables have multiple values (such as CFLAGS="-std=c11 -fPIE"), eval drops most values (except first one) from it. This commit fixes this issue. Signed-off-by: Mobin "Hojjat" Aydinfar --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index 47b57b8..c33f1c8 100755 --- a/configure +++ b/configure @@ -221,7 +221,7 @@ for arg ; do --host=*|--target=*) target=${arg#*=} ;; --build=*) build=${arg#*=} ;; -* ) echo "$0: unknown option $arg" ;; - *=*) eval "$arg" ;; + *=*) eval "${arg%%=*}=\${arg#*=}" ;; *) target=$arg ;; esac done -- cgit v1.2.3