From: Florian Weimer Date: Fri, 8 Feb 2019 15:51:17 +0000 (+0100) Subject: Provide as a sysdeps header exclusively X-Git-Tag: glibc-2.30~371 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e47d82c99a6db060419b421768aced76bea92997;p=thirdparty%2Fglibc.git Provide as a sysdeps header exclusively Non-sysdeps headers cannot be overriden by sysdeps headers across the entire build, so it is necessary to turn such extension headers into sysdeps headers themselves. The approach here follows the existing header (although it uses sysdeps/gnu instead of sysdeps/generic). Fixes commit 1d0fc213824eaa2a8f8c4385daaa698ee8fb7c92 ("Linux: Add gettid system call wrapper [BZ #6399]") and commit 8f89ab216f205c2ffd90d1fc8454efdfc0b01dee ("posix: Fix missing wrapper header for "). --- diff --git a/ChangeLog b/ChangeLog index 164db3f085b..62a78a193f0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2019-02-08 Florian Weimer + + * include/bits/unistd_ext.h: Remove file. + * posix/bits/unistd_ext.h: Move to ... + * sysdeps/generic/bits/unistd_ext.h: ... here. + 2019-02-08 Florian Weimer * include/bits/unistd_ext.h: New file. diff --git a/include/bits/unistd_ext.h b/include/bits/unistd_ext.h deleted file mode 100644 index 24e8d09ba84..00000000000 --- a/include/bits/unistd_ext.h +++ /dev/null @@ -1 +0,0 @@ -#include diff --git a/posix/bits/unistd_ext.h b/sysdeps/generic/bits/unistd_ext.h similarity index 100% rename from posix/bits/unistd_ext.h rename to sysdeps/generic/bits/unistd_ext.h