]> git.pld-linux.org Git - packages/ccache.git/blobdiff - ccache-nohash_size_mtime.patch
- updated to 3.2
[packages/ccache.git] / ccache-nohash_size_mtime.patch
diff --git a/ccache-nohash_size_mtime.patch b/ccache-nohash_size_mtime.patch
deleted file mode 100644 (file)
index b28550a..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
---- ccache-3.1/ccache.c~       2010-09-16 19:01:09.000000000 +0200
-+++ ccache-3.1/ccache.c        2010-10-02 18:16:57.670019849 +0200
-@@ -814,8 +814,10 @@
-               /* Do nothing. */
-       } else if (str_eq(compilercheck, "mtime")) {
-               hash_delimiter(hash, "cc_mtime");
--              hash_int(hash, st->st_size);
--              hash_int(hash, st->st_mtime);
-+              if (!getenv("CCACHE_NOHASH_SIZE_MTIME")) {
-+                      hash_int(hash, st->st_size);
-+                      hash_int(hash, st->st_mtime);
-+              }
-       } else if (str_eq(compilercheck, "content") || !allow_command) {
-               hash_delimiter(hash, "cc_content");
-               hash_file(hash, path);
This page took 0.123012 seconds and 4 git commands to generate.