diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-10-03 09:49:27 -0400 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-10-03 11:16:14 -0400 |
commit | 384b98028cb4be0e321320f10a1f3893e66598e0 (patch) | |
tree | 431e504b6c5fc75eff71daeaf3ad6c9f26e2ec74 /gnu | |
parent | 0f4655933121af9cf46df35677702d953c270907 (diff) | |
download | guix-384b98028cb4be0e321320f10a1f3893e66598e0.tar.gz guix-384b98028cb4be0e321320f10a1f3893e66598e0.zip |
gnu: gappa: Honor TESTS?.
* gnu/packages/algebra.scm (gappa) [phases] {check}: Honor TESTS?.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/algebra.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/algebra.scm b/gnu/packages/algebra.scm index 71a4b3dc9b..f94aba1ebf 100644 --- a/gnu/packages/algebra.scm +++ b/gnu/packages/algebra.scm @@ -1427,7 +1427,9 @@ objects.") (replace 'install (lambda _ (invoke "./remake" "-s" "-d" "install"))) (replace 'check - (lambda _ (invoke "./remake" "check")))))) + (lambda* (#:key tests? #:allow-other-keys) + (when tests? + (invoke "./remake" "check"))))))) (native-inputs (list autoconf automake bison flex libtool)) (inputs (list boost gmp mpfr)) (home-page "https://gitlab.inria.fr/gappa/gappa") |