[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/36: gnu: e2fsprogs: Use invoke.
From: |
Mark H. Weaver |
Subject: |
04/36: gnu: e2fsprogs: Use invoke. |
Date: |
Thu, 12 Apr 2018 04:09:17 -0400 (EDT) |
mhw pushed a commit to branch core-updates
in repository guix.
commit b132ad3a6314b29aca3a149089f1341f91a0f179
Author: Mark H Weaver <address@hidden>
Date: Fri Mar 16 02:07:29 2018 -0400
gnu: e2fsprogs: Use invoke.
* gnu/packages/linux.scm (e2fsprogs)[arguments]: Use invoke and remove
vestigial result code plumbing.
---
gnu/packages/linux.scm | 24 ++++++++++++------------
1 file changed, 12 insertions(+), 12 deletions(-)
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index e090b79..b5201a3 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -797,18 +797,18 @@ slabtop, and skill.")
(lambda* (#:key outputs #:allow-other-keys)
(let* ((out (assoc-ref outputs "out"))
(lib (string-append out "/lib")))
- (and (zero? (system* "make" "install-libs"))
-
- ;; Make the .a writable so that 'strip' works.
- ;; Failing to do that, due to debug symbols, we
- ;; retain a reference to the final
- ;; linux-libre-headers, which refer to the
- ;; bootstrap binaries.
- (let ((archives (find-files lib "\\.a$")))
- (for-each (lambda (file)
- (chmod file #o666))
- archives)
- #t))))))))
+ (invoke "make" "install-libs")
+
+ ;; Make the .a writable so that 'strip' works.
+ ;; Failing to do that, due to debug symbols, we
+ ;; retain a reference to the final
+ ;; linux-libre-headers, which refer to the
+ ;; bootstrap binaries.
+ (let ((archives (find-files lib "\\.a$")))
+ (for-each (lambda (file)
+ (chmod file #o666))
+ archives))
+ #t))))))
(home-page "http://e2fsprogs.sourceforge.net/")
(synopsis "Creating and checking ext2/ext3/ext4 file systems")
(description
- branch core-updates updated (1293f6d -> 4b20e07), Mark H. Weaver, 2018/04/12
- 02/36: gnu: libstdc++-doc: Use invoke., Mark H. Weaver, 2018/04/12
- 06/36: gnu: freefall: Return #t from all phases., Mark H. Weaver, 2018/04/12
- 04/36: gnu: e2fsprogs: Use invoke.,
Mark H. Weaver <=
- 07/36: gnu: rdma-core: Use invoke., Mark H. Weaver, 2018/04/12
- 29/36: gnu: texlive-texmf: Return #t from all phases., Mark H. Weaver, 2018/04/12
- 15/36: gnu: p7zip: Use invoke., Mark H. Weaver, 2018/04/12
- 09/36: gnu: minizip: Use invoke., Mark H. Weaver, 2018/04/12
- 03/36: gnu: gnu-c-manual: Use invoke., Mark H. Weaver, 2018/04/12
- 23/36: gnu: camlp5: Return #t from all phases., Mark H. Weaver, 2018/04/12
- 19/36: gnu: byobu: Return #t from all phases., Mark H. Weaver, 2018/04/12
- 14/36: gnu: java-iq80-snappy: Use invoke., Mark H. Weaver, 2018/04/12
- 28/36: gnu: texlive-texmf: Use invoke instead of system*., Mark H. Weaver, 2018/04/12
- 35/36: gnu: gdb: Return #t from all phases., Mark H. Weaver, 2018/04/12