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-154-ge68c8d2


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  e68c8d2757f05d1817d95d66cd3f2c2acc538b34 (commit)
      from  1850ce5a2ea3b908b26165e7e951cd4334129f07 (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=e68c8d2757f05d1817d95d66cd3f2c2acc538b34

commit e68c8d2757f05d1817d95d66cd3f2c2acc538b34
Author: Florian Weimer <fweimer@redhat.com>
Date:   Tue Sep 20 10:41:04 2016 +0200

    sysd-rules: Cut down the number of rtld-% pattern rules
    
    rtld only needs shared objects, so the other patterns are pointless and
    significantly increase the work make has to perform while identifying
    which pattern rule to apply.

diff --git a/ChangeLog b/ChangeLog
index 2758482..2214b93 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2016-09-20  Florian Weimer  <fweimer@redhat.com>
+
+	* scripts/sysd-rules.awk (BEGIN): Only generate rtld patterns for
+	.os objects.
+
 2016-09-19  Tulio Magno Quites Machado Filho  <tuliom@linux.vnet.ibm.com>
 
 	[BZ #20615]
diff --git a/scripts/sysd-rules.awk b/scripts/sysd-rules.awk
index 69af400..c82e8fd 100644
--- a/scripts/sysd-rules.awk
+++ b/scripts/sysd-rules.awk
@@ -50,6 +50,10 @@ BEGIN {
         split(pattern, td, ":");
         target_pattern = td[1];
         dep_pattern = td[2];
+        # rtld objects are always PIC.
+        if (target_pattern ~ /^rtld/ && o != ".os") {
+            continue;
+        }
         if (target_pattern == "%") {
           command_suffix = "";
         } else {

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

Summary of changes:
 ChangeLog              |    5 +++++
 scripts/sysd-rules.awk |    4 ++++
 2 files changed, 9 insertions(+), 0 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]