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-193-g8d3bd94


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  8d3bd947483f50b57aee7c35c07dc1927d6e8a27 (commit)
      from  32daf20b54744fd808fff8239b4a1d50e40ad027 (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=8d3bd947483f50b57aee7c35c07dc1927d6e8a27

commit 8d3bd947483f50b57aee7c35c07dc1927d6e8a27
Author: Zack Weinberg <zackw@panix.com>
Date:   Wed Sep 28 07:28:00 2016 -0400

    Minor corrections to scripts/check-installed-headers.sh.
    
    	* scripts/check-installed-headers.sh: Generalize treatment of
    	sys/elf.h to all target architectures.

diff --git a/ChangeLog b/ChangeLog
index 0484809..88ea4b1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2016-09-28  Zack Weinberg  <zackw@panix.com>
 
+	* scripts/check-installed-headers.sh: Generalize treatment of
+	sys/elf.h to all target architectures.
+
 	* sysdeps/unix/sysv/linux/s390/sys/ucontext.h: Restore accidentally-
 	deleted typedef ucontext_t.
 
diff --git a/scripts/check-installed-headers.sh b/scripts/check-installed-headers.sh
index 7fbc725..87d6142 100644
--- a/scripts/check-installed-headers.sh
+++ b/scripts/check-installed-headers.sh
@@ -77,9 +77,14 @@ for header in "$@"; do
         (bits/* | regexp.h | rpcsvc/*.x)
             continue;;
 
-        # sys/elf.h and sys/vm86.h are "unsupported on x86-64" and
-        # #error out on that target.
-        (sys/elf.h | sys/vm86.h)
+        # All extant versions of sys/elf.h contain nothing more than an
+        # exhortation (either a #warning or an #error) to use sys/procfs.h
+        # instead, plus an inclusion of that header.
+        (sys/elf.h)
+            continue;;
+
+        # sys/vm86.h is "unsupported on x86-64" and errors out on that target.
+        (sys/vm86.h)
             case "$is_x86_64" in
                 (yes) continue;;
                 (no)  ;;

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

Summary of changes:
 ChangeLog                          |    3 +++
 scripts/check-installed-headers.sh |   11 ++++++++---
 2 files changed, 11 insertions(+), 3 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]