diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2024-01-13 11:40:04 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2024-01-13 11:44:35 +0100 |
commit | d8723a83e14dd7775b0a45c704a6462758cdf6f0 (patch) | |
tree | e129d6bcfbae49205f70a73aec834081f5deb125 /package/coreutils/patches | |
parent | 608aa9ca1dbeeff74f1ec6142badcf9f677e21b5 (diff) |
coreutils: update to 9.4
Diffstat (limited to 'package/coreutils/patches')
-rw-r--r-- | package/coreutils/patches/patch-src_ls_c | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/package/coreutils/patches/patch-src_ls_c b/package/coreutils/patches/patch-src_ls_c deleted file mode 100644 index 94cb5b58f..000000000 --- a/package/coreutils/patches/patch-src_ls_c +++ /dev/null @@ -1,20 +0,0 @@ ---- coreutils-9.0.orig/src/ls.c 2021-09-24 13:31:05.000000000 +0200 -+++ coreutils-9.0/src/ls.c 2022-02-24 04:39:40.532579515 +0100 -@@ -2273,7 +2273,7 @@ decode_switches (int argc, char **argv) - if (linelen < 0) - { - /* Suppress bogus warning re comparing ws.ws_col to big integer. */ --# if __GNUC_PREREQ (4, 6) -+# if 4 < __GNUC__ + (6 <= __GNUC_MINOR__) - # pragma GCC diagnostic push - # pragma GCC diagnostic ignored "-Wtype-limits" - # endif -@@ -2282,7 +2282,7 @@ decode_switches (int argc, char **argv) - && 0 <= ioctl (STDOUT_FILENO, TIOCGWINSZ, &ws) - && 0 < ws.ws_col) - linelen = ws.ws_col <= MIN (PTRDIFF_MAX, SIZE_MAX) ? ws.ws_col : 0; --# if __GNUC_PREREQ (4, 6) -+# if 4 < __GNUC__ + (6 <= __GNUC_MINOR__) - # pragma GCC diagnostic pop - # endif - } |