summaryrefslogtreecommitdiff
path: root/debian/patches/debian/kfreebsd-softupdates.diff
diff options
context:
space:
mode:
Diffstat (limited to 'debian/patches/debian/kfreebsd-softupdates.diff')
-rw-r--r--debian/patches/debian/kfreebsd-softupdates.diff27
1 files changed, 27 insertions, 0 deletions
diff --git a/debian/patches/debian/kfreebsd-softupdates.diff b/debian/patches/debian/kfreebsd-softupdates.diff
new file mode 100644
index 0000000..2edf4be
--- /dev/null
+++ b/debian/patches/debian/kfreebsd-softupdates.diff
@@ -0,0 +1,27 @@
+From: Steven Chamberlain <steven@pyro.eu.org>
+Date: Thu, 17 Dec 2015 02:15:58 +0000
+Subject: Work around Debian Bug#796798
+
+kFreeBSD 10 (possibly only with softupdates enabled) may defer
+calculating the mtime for more than 2 seconds. Work around this
+with a stat() call to calculate the mtime immediately.
+
+(Modified to only stat() on kfreebsd by Niko Tyni)
+
+Bug-Debian: https://bugs.debian.org/796798
+---
+ t/op/stat.t | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/t/op/stat.t b/t/op/stat.t
+index e0ce03b..2e75fec 100644
+--- a/t/op/stat.t
++++ b/t/op/stat.t
+@@ -101,6 +101,7 @@ sleep 3 if $funky_FAT_timestamps;
+ print FOO "Now is the time for all good men to come to.\n";
+ close(FOO);
+
++stat($tmpfile) if $^O =~ /^gnukfreebsd/; # Work around Debian Bug#796798
+ sleep 2;
+
+ my $has_link = 1;