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.20-50-gb7e02da


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  b7e02da4e9c426c61d535aa96b0cf0b296e2e25c (commit)
      from  62058ce612ed3459501b4c4332e268edfe977f59 (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=b7e02da4e9c426c61d535aa96b0cf0b296e2e25c

commit b7e02da4e9c426c61d535aa96b0cf0b296e2e25c
Author: Joseph Myers <joseph@codesourcery.com>
Date:   Mon Sep 29 23:24:37 2014 +0000

    Run tst-ld-sse-use.sh with bash.
    
    tst-ld-sse-use.sh is a bash script, not a POSIX shell script, and so
    needs to be run with $(BASH) not $(SHELL) to avoid errors of the form:
    
    ../sysdeps/x86/tst-ld-sse-use.sh: 41: ../sysdeps/x86/tst-ld-sse-use.sh: declare: not found
    
    (when /bin/sh is dash).  This patch makes that change.
    
    Tested for x86_64.
    
    	* sysdeps/x86/Makefile ($(objpfx)tst-ld-sse-use.out): Run script
    	with $(BASH) not $(SHELL).

diff --git a/ChangeLog b/ChangeLog
index 2c607d9..9acecce 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2014-09-29  Joseph Myers  <joseph@codesourcery.com>
+
+	* sysdeps/x86/Makefile ($(objpfx)tst-ld-sse-use.out): Run script
+	with $(BASH) not $(SHELL).
+
 2014-09-29  Carlos O'Donell  <carlos@redhat.com>
 	    Matthew LeGendre  <legendre1@llnl.gov>
 
diff --git a/sysdeps/x86/Makefile b/sysdeps/x86/Makefile
index 087bbde..19f5eca 100644
--- a/sysdeps/x86/Makefile
+++ b/sysdeps/x86/Makefile
@@ -5,6 +5,6 @@ CFLAGS-.os += $(if $(filter $(@F),$(patsubst %,%.os,$(all-rtld-routines))),\
 tests-special += $(objpfx)tst-ld-sse-use.out
 $(objpfx)tst-ld-sse-use.out: ../sysdeps/x86/tst-ld-sse-use.sh $(objpfx)ld.so
 	@echo "Checking ld.so for SSE register use.  This will take a few seconds..."
-	$(SHELL) $< $(objpfx) '$(NM)' '$(OBJDUMP)' '$(READELF)' > $@; \
+	$(BASH) $< $(objpfx) '$(NM)' '$(OBJDUMP)' '$(READELF)' > $@; \
 	$(evaluate-test)
 endif

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

Summary of changes:
 ChangeLog            |    5 +++++
 sysdeps/x86/Makefile |    2 +-
 2 files changed, 6 insertions(+), 1 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]