[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#54260] [PATCH v2 1/2] gnu: ucsim: Don't explicitly return #t from p
From: |
Simon South |
Subject: |
[bug#54260] [PATCH v2 1/2] gnu: ucsim: Don't explicitly return #t from phases. |
Date: |
Tue, 8 Mar 2022 09:12:40 -0500 |
* gnu/packages/embedded.scm (ucsim)[arguments]: Don't explicitly return #t
from phases.
---
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 f7573618b9..7b219203be 100644
--- a/gnu/packages/embedded.scm
+++ b/gnu/packages/embedded.scm
@@ -1506,13 +1506,11 @@ (define-public ucsim
(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/")
--
2.34.0