[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
06/36: gnu: freefall: Return #t from all phases.
From: |
Mark H. Weaver |
Subject: |
06/36: gnu: freefall: Return #t from all phases. |
Date: |
Thu, 12 Apr 2018 04:09:17 -0400 (EDT) |
mhw pushed a commit to branch core-updates
in repository guix.
commit 2ee42f7e32045bddd465f230061269ebefe8489b
Author: Mark H Weaver <address@hidden>
Date: Fri Mar 16 02:16:06 2018 -0400
gnu: freefall: Return #t from all phases.
* gnu/packages/linux.scm (freefall)[arguments]: Return #t from all phase
procedures.
---
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 82e4552..7efe7fa 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -3292,14 +3292,16 @@ disks and SD cards. This package provides the userland
utilities.")
'(#:phases (modify-phases %standard-phases
(add-after 'unpack 'enter-subdirectory
(lambda _
- (chdir "tools/laptop/freefall")))
+ (chdir "tools/laptop/freefall")
+ #t))
(delete 'configure)
(add-before 'build 'increase-timeout
(lambda _
;; The default of 2 seconds is too low: it assumes an
;; open lid and AC power without actually checking.
(substitute* "freefall.c"
- (("alarm\\(2\\)") "alarm(5)")))))
+ (("alarm\\(2\\)") "alarm(5)"))
+ #t)))
#:make-flags (list (string-append "PREFIX="
(assoc-ref %outputs "out")))
#:tests? #f)) ;no tests
- 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 <=
- 04/36: gnu: e2fsprogs: Use invoke., Mark H. Weaver, 2018/04/12
- 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