me
/
guix
Archived
1
0
Fork 0

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
Simon South 2022-03-08 10:52:08 -05:00 committed by Ludovic Courtès
parent b3b9b68040
commit a05fb56c6e
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 2 additions and 4 deletions

View File

@ -1507,13 +1507,11 @@ handling communication with eBUS devices connected to a 2-wire bus system
(add-after 'unpack 'patch-makefiles
(lambda _
(substitute* (find-files "." "(\\.mk$|\\.in$)")
(("/bin/sh") (which "sh")))
#t))
(("/bin/sh") (which "sh")))))
(add-after 'install 'remove-empty-directory
(lambda* (#:key outputs #:allow-other-keys)
(delete-file-recursively
(string-append (assoc-ref outputs "out") "/share/man"))
#t)))))
(string-append (assoc-ref outputs "out") "/share/man")))))))
(native-inputs
(list bison flex))
(home-page "http://mazsola.iit.uni-miskolc.hu/ucsim/")