guix-commits
[Top][All Lists]
Advanced

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

08/17: gnu: xfsprogs: Build verbosely.


From: guix-commits
Subject: 08/17: gnu: xfsprogs: Build verbosely.
Date: Thu, 23 Sep 2021 12:20:54 -0400 (EDT)

nckx pushed a commit to branch master
in repository guix.

commit bea4a3abec0d039274547e5284fbfc5276bd87f4
Author: Tobias Geerinckx-Rice <me@tobias.gr>
AuthorDate: Wed Sep 22 19:53:12 2021 +0200

    gnu: xfsprogs: Build verbosely.
    
    * gnu/packages/linux.scm (xfsprogs)[arguments]: Add "V=1"
    to #:make-flags, and honour them in custom phases.
---
 gnu/packages/linux.scm | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index fdc5cb7..b3354d1 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -7700,6 +7700,8 @@ compatible with Python's ConfigParser style of .INI 
files, including RFC
     (outputs (list "out" "python"))
     (arguments
      `(#:tests? #f   ; kernel/user integration tests are in package "xfstests"
+       #:make-flags
+       (list "V=1")
        #:phases
        (modify-phases %standard-phases
          (add-after 'install 'separate-python-output
@@ -7713,8 +7715,8 @@ compatible with Python's ConfigParser style of .INI 
files, including RFC
                                (string-append python script)))
                 (list "/sbin/xfs_scrub_all")))))
          (add-after 'install 'install-headers
-           (lambda _
-             (invoke "make" "install-dev"))))))
+           (lambda* (#:key make-flags #:allow-other-keys)
+             (apply invoke "make" "install-dev" make-flags))))))
     (native-inputs
      `(("gettext" ,gettext-minimal)))
     (inputs



reply via email to

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