dev-util/ccache: drop unused patch
authorSergei Trofimovich <slyfox@gentoo.org>
Fri, 19 Jul 2019 21:57:12 +0000 (22:57 +0100)
committerSergei Trofimovich <slyfox@gentoo.org>
Fri, 19 Jul 2019 22:03:08 +0000 (23:03 +0100)
Package-Manager: Portage-2.3.69, Repoman-2.3.16
Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
dev-util/ccache/files/ccache-3.1.10-size-on-disk.patch [deleted file]

diff --git a/dev-util/ccache/files/ccache-3.1.10-size-on-disk.patch b/dev-util/ccache/files/ccache-3.1.10-size-on-disk.patch
deleted file mode 100644 (file)
index 5e50291..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-https://bugs.gentoo.org/56178
-
-stick to the size of files on disk rather than their byte size.
-this func is only used for stats management, so this should be safe.
-
---- a/util.c
-+++ b/util.c
-@@ -845,12 +845,7 @@ file_size(struct stat *st)
- #ifdef _WIN32
-       return (st->st_size + 1023) & ~1023;
- #else
--      size_t size = st->st_blocks * 512;
--      if ((size_t)st->st_size > size) {
--              /* probably a broken stat() call ... */
--              size = (st->st_size + 1023) & ~1023;
--      }
--      return size;
-+      return st->st_blocks * 512;
- #endif
- }