mirror of
https://git.yoctoproject.org/poky
synced 2026-02-25 19:09:41 +01:00
License-update: formatting
Exclude aclocal, as aclocal.m4 is hand-maintained
(similar to recent tweaks elsewhere in core).
Find rbconfig.rb directly in ${D}, as grepping ruby's
internal file produces bogus results now.
(From OE-Core rev: f395c84d460acc44c633a6819efac68ca7829e6c)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
38 lines
1.3 KiB
Diff
38 lines
1.3 KiB
Diff
From 98071c0b28a45cd21a2cbe6746ce39067932b62f Mon Sep 17 00:00:00 2001
|
|
From: Christian Hofstaedtler <zeha@debian.org>
|
|
Date: Tue, 10 Oct 2017 15:04:34 -0300
|
|
Subject: [PATCH] rdoc: build reproducible documentation
|
|
|
|
- provide a fixed timestamp to the gzip compression
|
|
|
|
Upstream-Status: Backport [debian]
|
|
|
|
Signed-off-by: Antonio Terceiro <terceiro@debian.org>
|
|
Signed-off-by: Christian Hofstaedtler <zeha@debian.org>
|
|
---
|
|
lib/rdoc/generator/json_index.rb | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/lib/rdoc/generator/json_index.rb b/lib/rdoc/generator/json_index.rb
|
|
index c454910..24feab0 100644
|
|
--- a/lib/rdoc/generator/json_index.rb
|
|
+++ b/lib/rdoc/generator/json_index.rb
|
|
@@ -178,7 +178,7 @@ class RDoc::Generator::JsonIndex
|
|
debug_msg "Writing gzipped search index to %s" % outfile
|
|
|
|
Zlib::GzipWriter.open(outfile) do |gz|
|
|
- gz.mtime = File.mtime(search_index_file)
|
|
+ gz.mtime = -1
|
|
gz.orig_name = search_index_file.basename.to_s
|
|
gz.write search_index
|
|
gz.close
|
|
@@ -196,7 +196,7 @@ class RDoc::Generator::JsonIndex
|
|
debug_msg "Writing gzipped file to %s" % outfile
|
|
|
|
Zlib::GzipWriter.open(outfile) do |gz|
|
|
- gz.mtime = File.mtime(dest)
|
|
+ gz.mtime = -1
|
|
gz.orig_name = dest.basename.to_s
|
|
gz.write data
|
|
gz.close
|