diff options
author | Liliana Marie Prikler <[email protected]> | 2025-03-02 22:45:50 +0100 |
---|---|---|
committer | Liliana Marie Prikler <[email protected]> | 2025-03-03 06:21:29 +0100 |
commit | c991c49f09d6fd2764e1f7bdae54c097c748524f (patch) | |
tree | 56850dd2e40aa165f82d5b0f0a212a65826639b3 | |
parent | 06497493436830d303bb505474f31d01737c4c7b (diff) |
gnu: gst-plugins-base: Fix build on i686.
* gnu/packages/gstreamer.scm (gst-plugins-base)[#:phases]: Also disable
‘libs/dsd.c’ and ‘elements/volume.c’ tests.
-rw-r--r-- | gnu/packages/gstreamer.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/gstreamer.scm b/gnu/packages/gstreamer.scm index 4a575e4845..8459d50f62 100644 --- a/gnu/packages/gstreamer.scm +++ b/gnu/packages/gstreamer.scm @@ -608,7 +608,9 @@ This package provides the core library and elements.") #$@(cond ((target-x86-32?) #~((substitute* "tests/check/meson.build" - ((".*'libs/libsabi\\.c'.*") "")))) + ((".*'libs/dsd\\.c'.*") "") + ((".*'libs/libsabi\\.c'.*") "") + ((".*'elements/volume\\.c'.*") "")))) ((target-ppc64le?) #~((substitute* "tests/check/meson.build" ((".*'elements/glimagesink\\.c'.*") "") |