commit 9e7875af1a4a74f2be530598ec431bee94441bdc
parent 30ee76d489393d3b1ba5fd81c0c998ff1e56da8e
Author: Mobin <mobin@mobintestserver.ir>
Date: Sat, 8 Jul 2023 12:56:43 +0330
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 <mobin@mobintestserver.ir>
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/configure b/configure
@@ -415,7 +415,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