gnu: python-dbus: Fix test.
* gnu/packages/python.scm (python-dbus)[arguments]: Run test with 'DBUS_FATAL_WARNINGS=0'.
This commit is contained in:
parent
406766c0d0
commit
6717c87964
|
@ -4211,6 +4211,17 @@ features useful for text console applications.")
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1py62qir966lvdkngg0v8k1khsqxwk5m4s8nflpk1agk5f5nqb71"))))
|
(base32 "1py62qir966lvdkngg0v8k1khsqxwk5m4s8nflpk1agk5f5nqb71"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
|
(arguments
|
||||||
|
'(#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(add-before
|
||||||
|
'check 'pre-check
|
||||||
|
(lambda _
|
||||||
|
;; XXX: For the missing '/etc/machine-id'.
|
||||||
|
(substitute* "test/run-test.sh"
|
||||||
|
(("DBUS_FATAL_WARNINGS=1")
|
||||||
|
"DBUS_FATAL_WARNINGS=0"))
|
||||||
|
#t)))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("pkg-config" ,pkg-config)))
|
`(("pkg-config" ,pkg-config)))
|
||||||
(inputs
|
(inputs
|
||||||
|
|
Loading…
Reference in New Issue