guix-commits
[Top][All Lists]
Advanced

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

02/03: gnu: e2fsprogs: Remove timestamp from 'libext2fs.info.gz'.


From: Ludovic Courtès
Subject: 02/03: gnu: e2fsprogs: Remove timestamp from 'libext2fs.info.gz'.
Date: Tue, 10 Jan 2017 21:15:38 +0000 (UTC)

civodul pushed a commit to branch master
in repository guix.

commit 082be6d2a1fe62aba51a119a28a774eeb99f23bd
Author: Ludovic Courtès <address@hidden>
Date:   Tue Jan 10 21:49:38 2017 +0100

    gnu: e2fsprogs: Remove timestamp from 'libext2fs.info.gz'.
    
    * gnu/packages/linux.scm (e2fsprogs)[source](snippet): Patch
    'doc/Makefile.in' to use the '-n' option of gzip.
---
 gnu/packages/linux.scm |   12 +++++++++---
 1 file changed, 9 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index b7cbba4..70dbf81 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -622,9 +622,15 @@ slabtop, and skill.")
                "1ix0b83zgw5n0p2grh2961c6796m92yr2jqc2sbr23x3lfsp8r71"))
              (modules '((guix build utils)))
              (snippet
-              '(substitute* "MCONFIG.in"
-                 (("INSTALL_SYMLINK = /bin/sh")
-                  "INSTALL_SYMLINK = sh")))))
+              '(begin
+                 (substitute* "MCONFIG.in"
+                   (("INSTALL_SYMLINK = /bin/sh")
+                    "INSTALL_SYMLINK = sh"))
+
+                 ;; Do not include a timestamp in libext2fs.info.gz.
+                 (substitute* "doc/Makefile.in"
+                   (("gzip -9")
+                    "gzip -9n"))))))
     (build-system gnu-build-system)
     (inputs `(("util-linux" ,util-linux)))
     (native-inputs `(("pkg-config" ,pkg-config)



reply via email to

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