mirror of
https://sourceware.org/git/glibc.git
synced 2025-08-07 06:43:00 +03:00
Minor corrections to scripts/check-installed-headers.sh.
* scripts/check-installed-headers.sh: Generalize treatment of sys/elf.h to all target architectures.
This commit is contained in:
@@ -1,5 +1,8 @@
|
|||||||
2016-09-28 Zack Weinberg <zackw@panix.com>
|
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-
|
* sysdeps/unix/sysv/linux/s390/sys/ucontext.h: Restore accidentally-
|
||||||
deleted typedef ucontext_t.
|
deleted typedef ucontext_t.
|
||||||
|
|
||||||
|
@@ -77,9 +77,14 @@ for header in "$@"; do
|
|||||||
(bits/* | regexp.h | rpcsvc/*.x)
|
(bits/* | regexp.h | rpcsvc/*.x)
|
||||||
continue;;
|
continue;;
|
||||||
|
|
||||||
# sys/elf.h and sys/vm86.h are "unsupported on x86-64" and
|
# All extant versions of sys/elf.h contain nothing more than an
|
||||||
# #error out on that target.
|
# exhortation (either a #warning or an #error) to use sys/procfs.h
|
||||||
(sys/elf.h | sys/vm86.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
|
case "$is_x86_64" in
|
||||||
(yes) continue;;
|
(yes) continue;;
|
||||||
(no) ;;
|
(no) ;;
|
||||||
|
Reference in New Issue
Block a user