diff options
| author | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2025-09-07 10:05:51 +0200 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2026-03-06 14:53:08 +0100 |
| commit | a12539b330548cda754a5ba0d937237b93d95df8 (patch) | |
| tree | e4f0a3a14329ac2bd5edd378c08b1f2ebaded5a4 | |
| parent | bbbd083aaaa50ca40e747f93c6846a5230f8e1a6 (diff) | |
gnu: gtk: Check after install.
* gnu/packages/gtk.scm (gtk)[#:phases]: Move ‘check’ after ‘install’.
| -rw-r--r-- | gnu/packages/gtk.scm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm index 6f49ba897db..c8b93ad9f86 100644 --- a/gnu/packages/gtk.scm +++ b/gnu/packages/gtk.scm @@ -1310,7 +1310,11 @@ application suites.") ;; Move HTML documentation to output 'doc'. (rename-file (string-append #$output "/share/doc") - (string-append #$output:doc "/share/doc"))))))) + (string-append #$output:doc "/share/doc")))) + ;; Introspection test requires installed libraries + (delete 'check) + (add-after 'install 'check + (assoc-ref %standard-phases 'check))))) (native-inputs (list docbook-xml-4.3 docbook-xsl |
