guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

04/05: gnu: ucsim: Don't explicitly return #t from phases.


From: guix-commits
Subject: 04/05: gnu: ucsim: Don't explicitly return #t from phases.
Date: Fri, 11 Mar 2022 17:23:43 -0500 (EST)

civodul pushed a commit to branch master
in repository guix.

commit a05fb56c6e0edcd823b3df82a54ace46e82a03be
Author: Simon South <simon@simonsouth.net>
AuthorDate: Tue Mar 8 10:52:08 2022 -0500

    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>
---
 gnu/packages/embedded.scm | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/embedded.scm b/gnu/packages/embedded.scm
index 24d454820b..021ce8c3fa 100644
--- a/gnu/packages/embedded.scm
+++ b/gnu/packages/embedded.scm
@@ -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/";)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]