diff options
author | Maciej W. Rozycki <macro@wdc.com> | 2019-03-30 01:11:31 +0000 |
---|---|---|
committer | Maciej W. Rozycki <macro@wdc.com> | 2019-03-30 01:11:31 +0000 |
commit | 656dd306d49f34fb89a118624def9c1db8a9cfcb (patch) | |
tree | f7cd3a56c32cbba323c0072cde90e8c30436957f /sysdeps/unix/sysv/linux/riscv/configure.ac | |
parent | 10cce66930b3dc0405106bbb62a6d44602bec118 (diff) | |
download | glibc-656dd306d49f34fb89a118624def9c1db8a9cfcb.tar.gz glibc-656dd306d49f34fb89a118624def9c1db8a9cfcb.tar.xz glibc-656dd306d49f34fb89a118624def9c1db8a9cfcb.zip |
RISC-V: Fix `test' operand error with soft-float ABI being configured
Fix a: .../sysdeps/unix/sysv/linux/riscv/configure: line 181: test: =: unary operator expected message produced by the RISC-V configure fragment with the soft-float ABI selected, caused by $libc_cv_riscv_float_abi evaluating to nil in the invocation of `test $libc_cv_riscv_float_abi = no'. * sysdeps/unix/sysv/linux/riscv/configure.ac: Quote $libc_cv_riscv_float_abi in `test' invocation. * sysdeps/unix/sysv/linux/riscv/configure: Regenerate.
Diffstat (limited to 'sysdeps/unix/sysv/linux/riscv/configure.ac')
-rw-r--r-- | sysdeps/unix/sysv/linux/riscv/configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/riscv/configure.ac b/sysdeps/unix/sysv/linux/riscv/configure.ac index 4fae013ec9..d4819931ca 100644 --- a/sysdeps/unix/sysv/linux/riscv/configure.ac +++ b/sysdeps/unix/sysv/linux/riscv/configure.ac @@ -20,7 +20,7 @@ AC_EGREP_CPP(yes, [#ifdef __riscv_float_abi_soft yes #endif ],libc_cv_riscv_float_abi=) -if test $libc_cv_riscv_float_abi = no; then +if test "$libc_cv_riscv_float_abi" = no; then AC_MSG_ERROR([Unable to determine floating-point ABI]) fi |