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.24-602-gd4d629e


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  d4d629e6187e33050902824a94498b6096eacac9 (commit)
      from  26e21ad35db514c646e1491a414d45a47cb4a733 (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=d4d629e6187e33050902824a94498b6096eacac9

commit d4d629e6187e33050902824a94498b6096eacac9
Author: Joseph Myers <joseph@codesourcery.com>
Date:   Tue Jan 3 15:11:17 2017 +0000

    Fix elf/tst-ldconfig-X for cross testing.
    
    elf/Makefile passes arguments to tst-ldconfig-X.sh that are different
    from what it expects, so resulting in the test failing in cross
    testing.  This patch corrects the arguments passed (the script itself
    has correct logic for cross testing, it's just the Makefile that's
    wrong).
    
    Tested for powerpc (cross testing) and for x86_64 (native testing).
    
    	* elf/Makefile ($(objpfx)tst-ldconfig-X.out): Correct arguments
    	passed to tst-ldconfig-X.sh.

diff --git a/ChangeLog b/ChangeLog
index 2de8cd9..8af3a19 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2017-01-03  Joseph Myers  <joseph@codesourcery.com>
+
+	* elf/Makefile ($(objpfx)tst-ldconfig-X.out): Correct arguments
+	passed to tst-ldconfig-X.sh.
+
 2017-01-03  Martin Galvan  <martingalvan@sourceware.org>
 
 	* nptl/nptl-printers.py: Fix tabs/spaces mismatches.
diff --git a/elf/Makefile b/elf/Makefile
index 0b90884..c7a2969 100644
--- a/elf/Makefile
+++ b/elf/Makefile
@@ -1355,7 +1355,8 @@ $(objpfx)tst-prelink-cmp.out: tst-prelink.exp \
 	$(evaluate-test)
 
 $(objpfx)tst-ldconfig-X.out : tst-ldconfig-X.sh $(objpfx)ldconfig
-	$(SHELL) $< '$(common-objpfx)' '$(test-wrapper)' '$(test-wrapper-env)' > $@; \
+	$(SHELL) $< '$(common-objpfx)' '$(test-wrapper-env)' \
+		 '$(run-program-env)' > $@; \
 	$(evaluate-test)
 
 $(objpfx)tst-dlsym-error: $(libdl)

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

Summary of changes:
 ChangeLog    |    5 +++++
 elf/Makefile |    3 ++-
 2 files changed, 7 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]