diff options
| author | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2024-10-29 10:22:22 +0100 |
|---|---|---|
| committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2025-03-02 20:31:34 +0100 |
| commit | f48438f5e50db5dd0e5ae26ee2f0eb85a9c8221a (patch) | |
| tree | 2bf6f5ab6735b5af3214d8fac38ce56a65cd50c1 | |
| parent | 075ff9f60b3b899ab9d2f51c08b9c3528a190a4e (diff) | |
gnu: blueprint-compiler: Fix build.
* gnu/packages/gnome.scm (blueprint-compiler)[#:phases]: Add ‘fix-tests’.
| -rw-r--r-- | gnu/packages/gnome.scm | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index d98812b75cd..8be3ea1b749 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -3369,6 +3369,16 @@ the GNOME desktop environment.") #~(modify-phases %standard-phases (add-after 'glib-or-gtk-wrap 'wrap-python (assoc-ref python:%standard-phases 'wrap)) + (add-after 'unpack 'fix-tests + (lambda _ + (with-atomic-file-replacement + "tests/sample_errors/deprecations.err" + (lambda (in out) + (dump-port in out) + (newline out) + (display + "9,3,12,signal Gtk.Window::keys-changed () is deprecated\n" + out))))) (add-before 'check 'pre-check (lambda _ (system "Xvfb :1 &") |
