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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
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 ;; #( |
|
|
|
|