mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: freefall: Return #t from all phases.
* gnu/packages/linux.scm (freefall)[arguments]: Return #t from all phase procedures.
This commit is contained in:
parent
90a54e3674
commit
2ee42f7e32
1 changed files with 4 additions and 2 deletions
|
@ -3292,14 +3292,16 @@ (define-public freefall
|
|||
'(#: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
|
||||
|
|
Loading…
Reference in a new issue