mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-25 20:19:18 -05:00
gnu: indi: Stop returning #t from phases.
* gnu/packages/astronomy.scm (indi)[arguments]: Remove #t phase return values.
This commit is contained in:
parent
9a40c1d5bb
commit
a49a007328
1 changed files with 2 additions and 4 deletions
|
@ -820,13 +820,11 @@ (define-public indi
|
|||
(lambda* (#:key tests? #:allow-other-keys)
|
||||
(when tests?
|
||||
(with-directory-excursion "test"
|
||||
(invoke "ctest"))
|
||||
#t)))
|
||||
(invoke "ctest")))))
|
||||
(add-before 'install 'set-install-directories
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(let ((out (assoc-ref outputs "out")))
|
||||
(mkdir-p (string-append out "/lib/udev/rules.d")))
|
||||
#t)))))
|
||||
(mkdir-p (string-append out "/lib/udev/rules.d"))))))))
|
||||
(native-inputs
|
||||
`(("googletest" ,googletest)))
|
||||
(inputs
|
||||
|
|
Loading…
Reference in a new issue