]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Run tst-ld-sse-use.sh with bash.
authorJoseph Myers <joseph@codesourcery.com>
Mon, 29 Sep 2014 23:24:37 +0000 (23:24 +0000)
committerJoseph Myers <joseph@codesourcery.com>
Mon, 29 Sep 2014 23:24:37 +0000 (23:24 +0000)
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).

ChangeLog
sysdeps/x86/Makefile

index 2c607d9206bd04620d70c2287eae13acd344f625..9acecce82c70a126997f929799aeb4cc557655f4 100644 (file)
--- 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>
 
index 087bbdeca04accd0e7016ad1669b2d87be84a7c4..19f5eca741af4e686748157586aea67e9357254e 100644 (file)
@@ -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