diff options
author | Artyom V. Poptsov <poptsov.artyom@gmail.com> | 2025-04-14 18:28:34 +0300 |
---|---|---|
committer | Artyom V. Poptsov <poptsov.artyom@gmail.com> | 2025-04-15 20:06:06 +0300 |
commit | 12a6dd40a7b88454cc8a8c930c22681fcee5b1ea (patch) | |
tree | ab785bc8c2cecb76484f8ce3bbe1675a30c8afd7 | |
parent | ec5ea239e9887f6ccf8aef0c9f9a6de9f72f7366 (diff) |
gnu: dico: Remove a custom "check" phase.
* gnu/packages/dico.scm (dico)[arguments]<#:phases>: Remove "check" phase.
[#:make-flags]: Remove.
Change-Id: I3562e16365389e1377f3ea7997878b1849052849
-rw-r--r-- | gnu/packages/dico.scm | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/gnu/packages/dico.scm b/gnu/packages/dico.scm index 58f6d771ac..38f57dc24f 100644 --- a/gnu/packages/dico.scm +++ b/gnu/packages/dico.scm @@ -55,19 +55,13 @@ '(#:configure-flags (list (string-append "--with-guile-site-dir=" %output "/share/guile/site/2.0") "--disable-static") - #:make-flags '("V=1") #:phases (modify-phases %standard-phases (add-before 'check 'silence-guile (lambda _ ;; Guile is too talkative, which disturbs the test ;; infrastructure. Gag it. (setenv "GUILE_AUTO_COMPILE" "0") - (setenv "GUILE_WARN_DEPRECATED" "no"))) - (replace 'check - (lambda* (#:key tests? #:allow-other-keys) - (when tests? - ;; Test '71: append + dooffs + env' fails if $V is not 2. - (invoke "make" "check" "V=2"))))))) + (setenv "GUILE_WARN_DEPRECATED" "no")))))) (native-inputs (list groff)) (inputs (list m4 ;used at run time |