mirror of
https://sourceware.org/git/glibc.git
synced 2025-06-29 22:21:48 +03:00
Fix location where math-vector-fortran.h is installed.
2019-03-07 Martin Liska <mliska@suse.cz> * math/Makefile: Change location where math-vector-fortran.h is installed. * math/finclude/math-vector-fortran.h: Move from bits/math-vector-fortran.h. * sysdeps/x86/fpu/finclude/math-vector-fortran.h: Move from sysdeps/x86/fpu/bits/math-vector-fortran.h. * scripts/check-installed-headers.sh: Skip Fortran header files. * scripts/check-wrapper-headers.py: Likewise.
This commit is contained in:
@ -75,6 +75,10 @@ def check_headers(args):
|
||||
|
||||
is_nonsysdep_header = os.access(header, os.R_OK)
|
||||
if is_nonsysdep_header:
|
||||
# Skip Fortran header files.
|
||||
if '/finclude/' in header:
|
||||
continue
|
||||
|
||||
include_path = os.path.join(args.root, INCLUDE, header)
|
||||
if not os.access(include_path, os.R_OK):
|
||||
print('error: missing wrapper header {} for {}'.format(
|
||||
|
Reference in New Issue
Block a user