guix-commits
[Top][All Lists]
Advanced

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

01/02: gnu: util-linux: Minor fixes.


From: Mark H. Weaver
Subject: 01/02: gnu: util-linux: Minor fixes.
Date: Tue, 15 Sep 2015 04:20:37 +0000

mhw pushed a commit to branch core-updates
in repository guix.

commit 8338c2416377c58414b64227287756b3b16036c8
Author: Mark H Weaver <address@hidden>
Date:   Tue Sep 15 00:02:51 2015 -0400

    gnu: util-linux: Minor fixes.
    
    * gnu/packages/linux.scm (util-linux)[source]: Return #t from the snippet.
      [arguments]: Remove "--enable-ddate" from configure flags, as it is no
      longer recognized (ddate is no longer included in util-linux).
---
 gnu/packages/linux.scm |    9 +++++----
 1 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index 9da3a21..f1080e3 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -404,13 +404,14 @@ providing the system administrator with some help in 
common tasks.")
               (snippet
                ;; We take the 'logger' program from GNU Inetutils and 'kill'
                ;; from GNU Coreutils.
-               '(substitute* "configure"
-                  (("build_logger=yes") "build_logger=no")
-                  (("build_kill=yes") "build_kill=no")))))
+               '(begin
+                  (substitute* "configure"
+                    (("build_logger=yes") "build_logger=no")
+                    (("build_kill=yes") "build_kill=no"))
+                  #t))))
     (build-system gnu-build-system)
     (arguments
      `(#:configure-flags (list "--disable-use-tty-group"
-                               "--enable-ddate"
 
                                ;; Install completions where our
                                ;; bash-completion package expects them.



reply via email to

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