mirror of
https://codeberg.org/guix/guix.git
synced 2026-01-25 12:05:19 -06:00
gnu: gnome-console: Fix test.
* gnu/packages/gnome.scm (gnome-console): Fix test.
[arguments]<#:phases>{fix-test-path-lookup}: Add phase.
Change-Id: I4faab15e78f3e3ca030972dae1d4162bcb956213
Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
This commit is contained in:
parent
bfda6d2e88
commit
de5e71c525
1 changed files with 9 additions and 1 deletions
|
|
@ -5467,7 +5467,15 @@ more fun.")
|
|||
(build-system meson-build-system)
|
||||
(arguments
|
||||
(list #:glib-or-gtk? #t
|
||||
#:configure-flags #~(list "-Dtests=true")))
|
||||
#:configure-flags #~(list "-Dtests=true")
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(add-after 'unpack 'fix-test-path-lookup
|
||||
(lambda* (#:key inputs #:allow-other-keys)
|
||||
(substitute* "tests/test-utils.c"
|
||||
(("/usr/bin/true")
|
||||
(format #f "~a" (search-input-file
|
||||
inputs "bin/true")))))))))
|
||||
(native-inputs (list `(,glib "bin")
|
||||
gettext-minimal
|
||||
sassc
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue