From 3aaa244fac08956af7e71f99b3323465d8c58e87 Mon Sep 17 00:00:00 2001 From: Jack Hill Date: Thu, 13 May 2021 00:51:52 -0400 Subject: [PATCH 2/7] gnu: janet: Use #:test-target * gnu/packages/lisp.scm (janet)[arguments]: Add 'test-target' keyword. Remove customized 'check' phase. --- gnu/packages/lisp.scm | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm index 6e35062561..2e656cdbbc 100644 --- a/gnu/packages/lisp.scm +++ b/gnu/packages/lisp.scm @@ -18,6 +18,7 @@ ;;; Copyright © 2020 Marius Bakke ;;; Copyright © 2020 Zhu Zihao ;;; Copyright © 2021 Sharlatan Hellseher +;;; Copyright © 2021 Jack Hill ;;; ;;; This file is part of GNU Guix. ;;; @@ -1070,12 +1071,10 @@ including a built-in database engine and a GUI system.") (string-append "PREFIX=") (string-append "CC=" (assoc-ref %build-inputs "gcc") "/bin/gcc")) + #:test-target "test" #:phases (modify-phases %standard-phases - (delete 'configure) - (replace 'check - (lambda _ - (invoke "make" "test")))))) + (delete 'configure)))) (home-page "https://janet-lang.org/") (synopsis "Functional, imperative and embeddable programming language") (description -- 2.31.1