gnu: indi: Stop returning #t from phases.

* gnu/packages/astronomy.scm (indi)[arguments]: Remove #t phase return values.
This commit is contained in:
Tobias Geerinckx-Rice 2021-05-04 13:49:45 +02:00
parent 9a40c1d5bb
commit a49a007328
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -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