guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: gnu: keyutils: Avoid embedding build timestamp.


From: guix-commits
Subject: branch master updated: gnu: keyutils: Avoid embedding build timestamp.
Date: Sat, 04 Jun 2022 18:34:41 -0400

This is an automated email from the git hooks/post-receive script.

vagrantc pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 32322d0926 gnu: keyutils: Avoid embedding build timestamp.
32322d0926 is described below

commit 32322d0926313d28276928d81188ee909e464eb0
Author: Vagrant Cascadian <vagrant@reproducible-builds.org>
AuthorDate: Wed Jun 1 09:24:00 2022 -0700

    gnu: keyutils: Avoid embedding build timestamp.
    
    * gnu/packages/crypto.scm (keyutils)[arguments]: Add
      'avoid-embedding-timestamp phase.
---
 gnu/packages/crypto.scm | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/gnu/packages/crypto.scm b/gnu/packages/crypto.scm
index e98d9634dc..6e4b1331e7 100644
--- a/gnu/packages/crypto.scm
+++ b/gnu/packages/crypto.scm
@@ -398,6 +398,11 @@ the wrong hands.")
            #:phases
            #~(modify-phases %standard-phases
                (delete 'configure)      ; no configure script
+               (add-after 'unpack 'avoid-embedding-timestamp
+                 ;; Do not embed build timestamp
+                 (lambda _
+                   (substitute* "Makefile"
+                     (("shell date") "shell true"))))
                (add-after 'install 'install:static
                  (lambda _
                    (with-directory-excursion #$output



reply via email to

[Prev in Thread] Current Thread [Next in Thread]