diff options
author | Mark H Weaver <mhw@netris.org> | 2016-10-24 22:28:32 -0400 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2016-10-24 22:28:32 -0400 |
commit | f1267c872fcaed6c53d43b3ff51abb726f7418d6 (patch) | |
tree | c62f5e4b02fddeb7bdc90f934350150fa014c5fd /gnu/packages/gl.scm | |
parent | 19a65e7c8ce7d825a282c9f664ca3427f2fae0f1 (diff) | |
download | guix-f1267c872fcaed6c53d43b3ff51abb726f7418d6.tar guix-f1267c872fcaed6c53d43b3ff51abb726f7418d6.tar.gz |
gnu: mesa: Fix 'wayland-egl-symbols-check' on MIPS.
* gnu/packages/patches/mesa-wayland-egl-symbols-check-mips.patch: New
file.
* gnu/local.mk (dist_patch_DATA): Add it.
* gnu/packages/gl.scm (mesa)[source]: Add patch when building on MIPS.
Diffstat (limited to 'gnu/packages/gl.scm')
-rw-r--r-- | gnu/packages/gl.scm | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/gnu/packages/gl.scm b/gnu/packages/gl.scm index 54ffb386e0..3b5c955ab2 100644 --- a/gnu/packages/gl.scm +++ b/gnu/packages/gl.scm @@ -203,7 +203,15 @@ also known as DXTn or DXTC) for Mesa.") version "/mesa-" version ".tar.xz")) (sha256 (base32 - "12b3i59xdn2in2hchrkgh4fwij8zhznibx976l3pdj3qkyvlzcms")))) + "12b3i59xdn2in2hchrkgh4fwij8zhznibx976l3pdj3qkyvlzcms")) + (patches + ;; XXX To prevent a large number of rebuilds on other systems, + ;; apply the following patch on MIPS systems only. In the next + ;; core-updates cycle, this patch could be applied on all platforms. + (if (string-prefix? "mips" (or (%current-target-system) + (%current-system))) + (search-patches "mesa-wayland-egl-symbols-check-mips.patch") + '())))) (build-system gnu-build-system) (propagated-inputs `(("glproto" ,glproto) |