diff options
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/gstreamer.scm | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/gnu/packages/gstreamer.scm b/gnu/packages/gstreamer.scm index 4c3e3419ef..b74b6fdc00 100644 --- a/gnu/packages/gstreamer.scm +++ b/gnu/packages/gstreamer.scm @@ -597,6 +597,14 @@ for the GStreamer multimedia library.") `(#:glib-or-gtk? #t ; To wrap binaries and/or compile schemas #:phases (modify-phases %standard-phases + (add-after 'unpack 'fix-broken-test + (lambda _ + ;; Fix test failure on 32-bit. Remove for > 1.18.1. + ;; https://gitlab.freedesktop.org/gstreamer/gst-plugins-good/-/issues/803 + (substitute* "tests/check/elements/qtdemux.c" + (("10000000") + "G_GUINT64_CONSTANT (10000000)")) + #t)) (add-before 'check 'pre-check (lambda _ ;; Tests require a running X server. |