aboutsummaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorstriker.sh <19488257+strikersh@users.noreply.github.com>2020-02-06 00:30:18 +0000
committerGitHub <noreply@github.com>2020-02-06 00:30:18 +0000
commitf2125d95661f4865b996b3dea86ba7683f2b25ec (patch)
tree5bd9f0ffe248c26bdecab01d6d58a64e7599c6a8 /configure
parentb426ddd55c1e8cfc6ed991e8cdeca873f5ab2c17 (diff)
downloadriscv-gnu-toolchain-f2125d95661f4865b996b3dea86ba7683f2b25ec.zip
riscv-gnu-toolchain-f2125d95661f4865b996b3dea86ba7683f2b25ec.tar.gz
riscv-gnu-toolchain-f2125d95661f4865b996b3dea86ba7683f2b25ec.tar.bz2
[configure] fix unexpected operator line 3295
equality of two string is `=` not `==` see `test(1)`
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index ab9d878..d4e5076 100755
--- a/configure
+++ b/configure
@@ -3292,7 +3292,7 @@ else
fi
-if test "x$with_abi" == xdefault; then :
+if test "x$with_abi" = 'xdefault'; then :
case $with_arch in #(
*rv64g* | *rv64*d*) :
with_abi=lp64d ;; #(