all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#34868] [PATCH] gnu: coq-flocq: remove unnecessary return values
@ 2019-03-15 12:16 Dan Frumin
  2019-03-19 10:23 ` bug#34868: " Ludovic Courtès
  0 siblings, 1 reply; 2+ messages in thread
From: Dan Frumin @ 2019-03-15 12:16 UTC (permalink / raw)
  To: 34868; +Cc: Dan Frumin

---
 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

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* bug#34868: [PATCH] gnu: coq-flocq: remove unnecessary return values
  2019-03-15 12:16 [bug#34868] [PATCH] gnu: coq-flocq: remove unnecessary return values Dan Frumin
@ 2019-03-19 10:23 ` Ludovic Courtès
  0 siblings, 0 replies; 2+ messages in thread
From: Ludovic Courtès @ 2019-03-19 10:23 UTC (permalink / raw)
  To: Dan Frumin; +Cc: 34868-done

Hi,

Dan Frumin <dfrumin@cs.ru.nl> skribis:

> ---
>  gnu/packages/coq.scm | 9 +++------
>  1 file changed, 3 insertions(+), 6 deletions(-)

I added a commit log and applied.  Thank you!

Ludo’.

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2019-03-19 10:27 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-03-15 12:16 [bug#34868] [PATCH] gnu: coq-flocq: remove unnecessary return values Dan Frumin
2019-03-19 10:23 ` bug#34868: " Ludovic Courtès

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.