Browse Source

[configure] fix unexpected operator line 3295

equality of two string is `=` not `==` see `test(1)`
pull/585/head
striker.sh 6 years ago
committed by GitHub
parent
commit
f2125d9566
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      configure

2
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 ;; #(

Loading…
Cancel
Save