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 ibm/2.18/master updated. glibc-2.18-133-g7d00019


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, ibm/2.18/master has been updated
       via  7d000197af0d94220c665c5a655c8575fa348e47 (commit)
       via  c93dc5f0d2811b971a8cf124818fff22d1c74e52 (commit)
      from  8e6ea3948c217401a84cd1115ca0291bdf2be90c (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=7d000197af0d94220c665c5a655c8575fa348e47

commit 7d000197af0d94220c665c5a655c8575fa348e47
Author: Adhemerval Zanella <azanella@linux.vnet.ibm.com>
Date:   Thu Feb 6 12:10:25 2014 -0600

    PowerPC: Remove inexistent paths in sysdeps dirs
    
    This patch removes inexistent paths when building with --with-cpu=power5
    or newer.

diff --git a/ChangeLog b/ChangeLog
index 7835d36..0afa5ca 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
 2014-02-06  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
 
+	* sysdeps/powerpc/powerpc64/power5/Implies: Remove inexistent
+	paths.
+
+2014-02-06  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
+
 	* elf/get-dynamic-info.h (elf_get_dynamic_info): Fix remove of
 	assert.
 
diff --git a/sysdeps/powerpc/powerpc64/power5/Implies b/sysdeps/powerpc/powerpc64/power5/Implies
index b36831e..bedb20b 100644
--- a/sysdeps/powerpc/powerpc64/power5/Implies
+++ b/sysdeps/powerpc/powerpc64/power5/Implies
@@ -1,4 +1,2 @@
-powerpc/power5/fpu
-powerpc/power5
 powerpc/powerpc64/power4/fpu
 powerpc/powerpc64/power4

http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=c93dc5f0d2811b971a8cf124818fff22d1c74e52

commit c93dc5f0d2811b971a8cf124818fff22d1c74e52
Author: Adhemerval Zanella <azanella@linux.vnet.ibm.com>
Date:   Thu Feb 6 12:10:00 2014 -0600

    Fix assert() remove for DT_RUNPATH and DT_RPATH
    
    This patch fixes a wrong merge of d19762a5fd946ef86fb2922eb5710aac8000ab25

diff --git a/ChangeLog b/ChangeLog
index 01518f8..7835d36 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2014-02-06  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
+
+	* elf/get-dynamic-info.h (elf_get_dynamic_info): Fix remove of
+	assert.
+
 2014-02-04  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
 
 	* Versions.def (libm): Add GLIBC_2.3.
diff --git a/elf/get-dynamic-info.h b/elf/get-dynamic-info.h
index 1c30c44..57cf964 100644
--- a/elf/get-dynamic-info.h
+++ b/elf/get-dynamic-info.h
@@ -130,8 +130,8 @@ elf_get_dynamic_info (struct link_map *l, ElfW(Dyn) *temp)
   assert (info[DT_FLAGS] == NULL
 	  || (info[DT_FLAGS]->d_un.d_val & ~DF_BIND_NOW) == 0);
   /* Flags must not be set for ld.so.  */
-  info[DT_RUNPATH] == NULL;
-  info[DT_RPATH] == NULL;
+  info[DT_RUNPATH] = NULL;
+  info[DT_RPATH] = NULL;
 #else
   if (info[DT_FLAGS] != NULL)
     {

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

Summary of changes:
 ChangeLog                                |   10 ++++++++++
 elf/get-dynamic-info.h                   |    4 ++--
 sysdeps/powerpc/powerpc64/power5/Implies |    2 --
 3 files changed, 12 insertions(+), 4 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]