From 96e9f097ee1899cf9e41ce2756a684b0a2dc52f3 Mon Sep 17 00:00:00 2001 From: rain1 Date: Wed, 30 Mar 2016 13:05:19 +0100 Subject: gnu: linux-libre: Avoid introducing timestamps into the build. * gnu/packages/linux.scm (linux-libre)[build-phase]: Set the KCONFIG_NOTIMESTAMP and KBUILD_BUILD_TIMESTAMP environment variables to avoid introducing timestamps into the build outputs. --- gnu/packages/linux.scm | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index fb2b671bb9..3a4c9f114d 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -9,6 +9,7 @@ ;;; Copyright © 2016 Christopher Allan Webber ;;; Copyright © 2016 Tobias Geerinckx-Rice ;;; Copyright © 2016 Alex Kost +;;; Copyright © 2016 Raymond Nicholson ;;; ;;; This file is part of GNU Guix. ;;; @@ -223,6 +224,10 @@ for SYSTEM and optionally VARIANT, or #f if there is no such configuration." (let* ((version "4.5") (build-phase '(lambda* (#:key system inputs #:allow-other-keys #:rest args) + ;; Avoid introducing timestamps + (setenv "KCONFIG_NOTIMESTAMP" "1") + (setenv "KBUILD_BUILD_TIMESTAMP" (getenv "SOURCE_DATE_EPOCH")) + ;; Apply the neat patch. (system* "patch" "-p1" "--force" "-i" (assoc-ref inputs "patch/freedo+gnu")) -- cgit v1.2.3 af01e03a9a'>commitdiff
AgeCommit message (Expand)Author
2018-12-28gnu: wget: Enable previously failing test....Efraim Flashner
2018-12-28gnu: wget: Update to 1.20.1....Efraim Flashner
2018-12-17gnu: wget: Update to 1.20....Rutger Helling
2018-06-30gnu: wget2: Return #t from phases....Tobias Geerinckx-Rice
2018-05-08Merge branch 'master' into core-updatesMark H Weaver
2018-05-06gnu: wget: Update to 1.19.5 [fixes CVE-2018-0494]....Marius Bakke
2018-03-20Merge branch 'master' into core-updatesMark H Weaver
2018-03-17gnu: Fix common unquote typos....Tobias Geerinckx-Rice
2018-03-11build-system/gnu: Add 'bootstrap' phase....Ludovic Courtès
2018-01-23gnu: wget: Update to 1.19.4....Ludovic Courtès
2017-11-20gnu: wget2: Switch to official URL....Rutger Helling
2017-11-16gnu: wget: Add wget2....Rutger Helling
2017-10-26gnu: wget: Update to 1.19.2 [fixes CVE-2017-13089 and CVE-2017-13090]....Marius Bakke
2017-07-08gnu: wget: Update comment about test failures....Ludovic Courtès
2017-07-07gnu: wget: Fix compilation with Perl 5.26; skip faulty tests....Ludovic Courtès