diff options
| author | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2026-03-05 21:51:50 +0100 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2026-03-06 14:53:18 +0100 |
| commit | e7c59a901cbaffebc22859dbdeaa1ab24a80d8a8 (patch) | |
| tree | dbbe469ea0da79c75e36fa56f18dc45a106920ed | |
| parent | 6414018f279eef544f2afc6ac6b21f06705f5bfc (diff) | |
gnu: libmodulemd: Fix build.
* gnu/packages/rpm.scm (libmodulemd)[#:phases]: Move ‘check’ after ‘install’.
| -rw-r--r-- | gnu/packages/rpm.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gnu/packages/rpm.scm b/gnu/packages/rpm.scm index ff403682d95..b8aa93974f9 100644 --- a/gnu/packages/rpm.scm +++ b/gnu/packages/rpm.scm @@ -113,7 +113,10 @@ applying deltarpms, compatible with the original deltarpm packages.") (let ((dst (string-append #$output:doc "/share/gtk-doc"))) (mkdir-p (dirname dst)) (rename-file (search-input-directory outputs "share/gtk-doc") - dst))))))) + dst)))) + (delete 'check) + (add-after 'install 'check + (assoc-ref %standard-phases 'check))))) (native-inputs (list docbook-xml-4.1.2 `(,glib "bin") |
