This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

GNU C Library master sources branch master updated. glibc-2.29.9000-166-g656dd30


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".

The branch, master has been updated
       via  656dd306d49f34fb89a118624def9c1db8a9cfcb (commit)
      from  10cce66930b3dc0405106bbb62a6d44602bec118 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=656dd306d49f34fb89a118624def9c1db8a9cfcb

commit 656dd306d49f34fb89a118624def9c1db8a9cfcb
Author: Maciej W. Rozycki <macro@wdc.com>
Date:   Sat Mar 30 01:11:31 2019 +0000

    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.

diff --git a/ChangeLog b/ChangeLog
index 60f7645..bef50d4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2019-03-30  Maciej W. Rozycki  <macro@wdc.com>
+
+	* sysdeps/unix/sysv/linux/riscv/configure.ac: Quote
+	$libc_cv_riscv_float_abi in `test' invocation.
+	* sysdeps/unix/sysv/linux/riscv/configure: Regenerate.
+
 2019-03-29  Paul A. Clarke  <pc@us.ibm.com>
 
 	* sysdeps/powerpc/fpu/fenv_libc.h (fegetenv_register): Replace inline
diff --git a/sysdeps/unix/sysv/linux/riscv/configure b/sysdeps/unix/sysv/linux/riscv/configure
index 816e914..3018ca8 100755
--- a/sysdeps/unix/sysv/linux/riscv/configure
+++ b/sysdeps/unix/sysv/linux/riscv/configure
@@ -178,7 +178,7 @@ if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
 fi
 rm -f conftest*
 
-if test $libc_cv_riscv_float_abi = no; then
+if test "$libc_cv_riscv_float_abi" = no; then
   as_fn_error $? "Unable to determine floating-point ABI" "$LINENO" 5
 fi
 
diff --git a/sysdeps/unix/sysv/linux/riscv/configure.ac b/sysdeps/unix/sysv/linux/riscv/configure.ac
index 4fae013..d481993 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
 

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog                                  |    6 ++++++
 sysdeps/unix/sysv/linux/riscv/configure    |    2 +-
 sysdeps/unix/sysv/linux/riscv/configure.ac |    2 +-
 3 files changed, 8 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
GNU C Library master sources


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]