mirror of
https://git.yoctoproject.org/poky
synced 2026-05-31 12:49:46 +00:00
47076b9d38
(From OE-Core rev: 01a2660ff6079233de2573d360f511f99021f8b9) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
31 lines
1.3 KiB
Diff
31 lines
1.3 KiB
Diff
From cb5458b5d15aafa3543a47a33975609026d45d32 Mon Sep 17 00:00:00 2001
|
|
From: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
Date: Mon, 3 Jan 2022 14:18:34 +0000
|
|
Subject: [PATCH] webkitgtk: Add reproducibility fix
|
|
|
|
Injection a year based on the current date isn't reproducible. Hack this
|
|
to a specific year for now for reproducibilty and to avoid autobuilder failures.
|
|
|
|
The correct fix would be to use SOURCE_DATE_EPOCH from the environment and
|
|
then this could be submitted upstream, sadly my ruby isn't up to that.
|
|
|
|
Upstream-Status: Pending [could be reworked]
|
|
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
---
|
|
Source/JavaScriptCore/generator/GeneratedFile.rb | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/Source/JavaScriptCore/generator/GeneratedFile.rb b/Source/JavaScriptCore/generator/GeneratedFile.rb
|
|
index 6ed2b6e4..86a28286 100644
|
|
--- a/Source/JavaScriptCore/generator/GeneratedFile.rb
|
|
+++ b/Source/JavaScriptCore/generator/GeneratedFile.rb
|
|
@@ -25,7 +25,7 @@ require 'date'
|
|
require 'digest'
|
|
|
|
$LICENSE = <<-EOF
|
|
-Copyright (C) #{Date.today.year} Apple Inc. All rights reserved.
|
|
+Copyright (C) 2021 Apple Inc. All rights reserved.
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
modification, are permitted provided that the following conditions
|