gnu: ucsim: Don't explicitly return #t from phases.
* gnu/packages/embedded.scm (ucsim)[arguments]: Don't explicitly return #t from phases. Signed-off-by: Ludovic Courtès <ludo@gnu.org>master
parent
b3b9b68040
commit
a05fb56c6e
|
@ -1507,13 +1507,11 @@ handling communication with eBUS devices connected to a 2-wire bus system
|
||||||
(add-after 'unpack 'patch-makefiles
|
(add-after 'unpack 'patch-makefiles
|
||||||
(lambda _
|
(lambda _
|
||||||
(substitute* (find-files "." "(\\.mk$|\\.in$)")
|
(substitute* (find-files "." "(\\.mk$|\\.in$)")
|
||||||
(("/bin/sh") (which "sh")))
|
(("/bin/sh") (which "sh")))))
|
||||||
#t))
|
|
||||||
(add-after 'install 'remove-empty-directory
|
(add-after 'install 'remove-empty-directory
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
(delete-file-recursively
|
(delete-file-recursively
|
||||||
(string-append (assoc-ref outputs "out") "/share/man"))
|
(string-append (assoc-ref outputs "out") "/share/man")))))))
|
||||||
#t)))))
|
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list bison flex))
|
(list bison flex))
|
||||||
(home-page "http://mazsola.iit.uni-miskolc.hu/ucsim/")
|
(home-page "http://mazsola.iit.uni-miskolc.hu/ucsim/")
|
||||||
|
|
Reference in New Issue