diff options
| author | Michael Pratt | 2024-06-14 07:58:19 +0000 |
|---|---|---|
| committer | Robert Marko | 2024-06-19 09:22:13 +0000 |
| commit | c24c3da00b2741b60a800891e1006fde3d9f76ae (patch) | |
| tree | 4b5c6d63168b90a8c5583ef4a6ab299415f1ee84 | |
| parent | f560588b05b90df55bd0cf516ec22f2d6ce5516e (diff) | |
| download | openwrt-c24c3da00b2741b60a800891e1006fde3d9f76ae.tar.gz | |
tools/coreutils: ignore gnulib changes to fcntl.h
As a side-effect to adding a gnulib module for posix_fallocate(),
there are changes to the input file for fcntl.h which
are not handled here since autoreconf is not ran.
Skip updating the fcntl.h header from gnulib
and use the version shipped with the release.
Signed-off-by: Michael Pratt <mcpratt@pm.me>
Link: https://github.com/openwrt/openwrt/pull/15690
Signed-off-by: Robert Marko <robimarko@gmail.com>
| -rw-r--r-- | tools/coreutils/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/coreutils/Makefile b/tools/coreutils/Makefile index f55fdcc1b2..5ef780d7d2 100644 --- a/tools/coreutils/Makefile +++ b/tools/coreutils/Makefile @@ -25,6 +25,7 @@ export GNULIB_SRCDIR:=$(HOST_GNULIB_SRCDIR) HOST_GNULIB_SKIP := \ lib/nstrftime.c \ lib/fprintftime.c \ + lib/fcntl.in.h \ lib/locale.in.h HOST_CONFIGURE_ARGS += \ |