GNU bug report logs -
#34868
[PATCH] gnu: coq-flocq: remove unnecessary return values
Previous Next
Reported by: Dan Frumin <dfrumin <at> cs.ru.nl>
Date: Fri, 15 Mar 2019 13:24:01 UTC
Severity: normal
Tags: patch
Done: Ludovic Courtès <ludo <at> gnu.org>
Bug is archived. No further changes may be made.
Full log
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
---
gnu/packages/coq.scm | 9 +++------
1 file changed, 3 insertions(+), 6 deletions(-)
diff --git a/gnu/packages/coq.scm b/gnu/packages/coq.scm
index 83f5cd29af..bdf1576400 100644
--- a/gnu/packages/coq.scm
+++ b/gnu/packages/coq.scm
@@ -211,18 +211,15 @@ provers.")
#t))
(replace 'build
(lambda _
- (invoke "./remake")
- #t))
+ (invoke "./remake")))
(replace 'check
(lambda _
- (invoke "./remake" "check")
- #t))
+ (invoke "./remake" "check")))
;; TODO: requires coq-gappa and coq-interval.
;(invoke "./remake" "check-more")
(replace 'install
(lambda _
- (invoke "./remake" "install")
- #t)))))
+ (invoke "./remake" "install"))))))
(home-page "http://flocq.gforge.inria.fr/")
(synopsis "Floating-point formalization for the Coq system")
(description "Flocq (Floats for Coq) is a floating-point formalization for
--
2.17.1
This bug report was last modified 6 years and 127 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.