[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
09/18: gnu: busybox: Return #t from all phases.
From: |
Tobias Geerinckx-Rice |
Subject: |
09/18: gnu: busybox: Return #t from all phases. |
Date: |
Fri, 22 Jun 2018 17:22:18 -0400 (EDT) |
nckx pushed a commit to branch master
in repository guix.
commit f7705d4cb891b262a8b5247ff251dfc409cdeb6a
Author: Tobias Geerinckx-Rice <address@hidden>
Date: Fri Jun 22 17:17:29 2018 +0200
gnu: busybox: Return #t from all phases.
* gnu/packages/busybox.scm (busybox)[arguments]: Substitute INVOKE for
SYSTEM*.
---
gnu/packages/busybox.scm | 20 ++++++++++----------
1 file changed, 10 insertions(+), 10 deletions(-)
diff --git a/gnu/packages/busybox.scm b/gnu/packages/busybox.scm
index 6ef7200..4cdea3a 100644
--- a/gnu/packages/busybox.scm
+++ b/gnu/packages/busybox.scm
@@ -1,6 +1,7 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2014 John Darrington <address@hidden>
;;; Copyright © 2016, 2017 Efraim Flashner <address@hidden>
+;;; Copyright © 2018 Tobias Geerinckx-Rice <address@hidden>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -44,7 +45,7 @@
'(#:phases
(modify-phases %standard-phases
(replace 'configure
- (lambda _ (zero? (system* "make" "defconfig"))))
+ (lambda _ (invoke "make" "defconfig")))
(replace 'check
(lambda _
(substitute* '("testsuite/du/du-s-works"
@@ -71,18 +72,17 @@
(delete-file "testsuite/which/which-uses-default-path")
(rmdir "testsuite/which")
- (zero? (system* "make"
- ;; "V=1"
- "SKIP_KNOWN_BUGS=1"
- "SKIP_INTERNET_TESTS=1"
- "check"))))
+ (invoke "make"
+ ;; "V=1"
+ "SKIP_KNOWN_BUGS=1"
+ "SKIP_INTERNET_TESTS=1"
+ "check")))
(replace 'install
(lambda* (#:key outputs #:allow-other-keys)
(let ((out (assoc-ref outputs "out")))
- (zero?
- (system* "make"
- (string-append "CONFIG_PREFIX=" out)
- "install"))))))))
+ (invoke "make"
+ (string-append "CONFIG_PREFIX=" out)
+ "install")))))))
(native-inputs `(("perl" ,perl) ; needed to generate the man pages
(pod2man)
;; The following are needed by the tests.
("inetutils" ,inetutils)
- branch master updated (71d4ba5 -> 1829f7e), Tobias Geerinckx-Rice, 2018/06/22
- 01/18: gnu: lxc: Return #t from phases., Tobias Geerinckx-Rice, 2018/06/22
- 02/18: gnu: git-crypt: Return #t from all phases., Tobias Geerinckx-Rice, 2018/06/22
- 03/18: gnu: qemu: Return #t from phases., Tobias Geerinckx-Rice, 2018/06/22
- 05/18: gnu: guile-ssh: Return #t from all phases., Tobias Geerinckx-Rice, 2018/06/22
- 06/18: gnu: corkscrew: Return #t from all phases., Tobias Geerinckx-Rice, 2018/06/22
- 08/18: gnu: corkscrew: Clean up dead code., Tobias Geerinckx-Rice, 2018/06/22
- 07/18: gnu: corkscrew: Deduplicate documentation directories., Tobias Geerinckx-Rice, 2018/06/22
- 09/18: gnu: busybox: Return #t from all phases.,
Tobias Geerinckx-Rice <=
- 04/18: gnu: libtocc: Return #t from all phases., Tobias Geerinckx-Rice, 2018/06/22
- 10/18: gnu: libgit2: Return #t from all phases., Tobias Geerinckx-Rice, 2018/06/22
- 13/18: gnu: eid-mw: Don't use unstable tarball., Tobias Geerinckx-Rice, 2018/06/22
- 14/18: gnu: eid-mw: Fix build., Tobias Geerinckx-Rice, 2018/06/22
- 11/18: gnu: Use HTTPS for drobilla.net URIs., Tobias Geerinckx-Rice, 2018/06/22
- 15/18: gnu: eid-mw: Update to 4.4.3., Tobias Geerinckx-Rice, 2018/06/22
- 18/18: gnu: perl-cgi-simple: Update to 1.15., Tobias Geerinckx-Rice, 2018/06/22
- 12/18: gnu: Use more HTTPS., Tobias Geerinckx-Rice, 2018/06/22
- 17/18: gnu: perl-catalyst-runtime: Remove left-over input., Tobias Geerinckx-Rice, 2018/06/22
- 16/18: gnu: workrave: Edit description., Tobias Geerinckx-Rice, 2018/06/22