This is the mail archive of the
libc-alpha@sourceware.org
mailing list for the glibc project.
Re: [PATCH COMMITTED] check-wrapper-headers test: Adjust Fortran include file directory
- From: Zack Weinberg <zackw at panix dot com>
- To: Florian Weimer <fweimer at redhat dot com>
- Cc: GNU C Library <libc-alpha at sourceware dot org>
- Date: Thu, 7 Mar 2019 12:17:24 -0500
- Subject: Re: [PATCH COMMITTED] check-wrapper-headers test: Adjust Fortran include file directory
- References: <20190307163306.B3E8F81D9FFB@oldenburg2.str.redhat.com>
On Thu, Mar 7, 2019 at 11:33 AM Florian Weimer <fweimer@redhat.com> wrote:
>
> The check for "/finclude/" fails with the actual location of
> Fortran headers because they are now stored in the "finclude"
> subdirectory of the top-level include directory, so a relative path
> does not contain a slash '/' before the "finclude" string.
For future-proofing, the script should do both checks:
if header.startswith("finclude/") or "/finclude/" in header:
(I'm working on a patch series which, among other things, removes all
of the installed headers from the top-level include directory.)
zw