about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMobin <mobin@mobintestserver.ir>2023-07-08 12:56:43 +0330
committerLaurent Bercot <ska-skaware@skarnet.org>2023-07-10 22:43:04 +0000
commit74266756a204f730fef84d30f8ad5ba5627a4921 (patch)
treefac0df77e0b553c9600ec52eb8b433bf0b904bd6
parent50fd913e8d69daa7c61a38b124e706b5e479b875 (diff)
downloads6-linux-utils-74266756a204f730fef84d30f8ad5ba5627a4921.tar.gz
s6-linux-utils-74266756a204f730fef84d30f8ad5ba5627a4921.tar.xz
s6-linux-utils-74266756a204f730fef84d30f8ad5ba5627a4921.zip
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>
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 359d7fc..924d07e 100755
--- a/configure
+++ b/configure
@@ -203,7 +203,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