diff options
author | 宋文武 <iyzsong@member.fsf.org> | 2023-08-08 21:54:54 +0800 |
---|---|---|
committer | 宋文武 <iyzsong@member.fsf.org> | 2023-08-08 21:54:54 +0800 |
commit | 55f3b1791541814c83ee3558d1e45a34f1582d17 (patch) | |
tree | 89ea28b5c88d04bc56941d6834b718f87b772b63 /gnu/packages/qt.scm | |
parent | 1a02365c4a650badb3b219dcb3c8508c41acbba7 (diff) | |
download | guix-55f3b1791541814c83ee3558d1e45a34f1582d17.tar.gz guix-55f3b1791541814c83ee3558d1e45a34f1582d17.zip |
gnu: grantlee: Fix build on i686-linux.
This fixes a test (formatfiltertest07) failure on i686-linux.
See also <https://github.com/steveire/grantlee/issues/85>.
* gnu/packages/patches/grantlee-fix-i586-precision.patch: New file.
* gnu/local.mk (dist_patch_DATA): Register it.
* gnu/packages/qt.scm (grantlee)[source]: Add patch.
Diffstat (limited to 'gnu/packages/qt.scm')
-rw-r--r-- | gnu/packages/qt.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/qt.scm b/gnu/packages/qt.scm index ba3d4f1c00..8e54d3b696 100644 --- a/gnu/packages/qt.scm +++ b/gnu/packages/qt.scm @@ -320,7 +320,8 @@ applications on Wayland.") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "1ipnkdi8wgv519mvwa5zxlz20wipbypyfixjv2qdfd9vl1pznwvs")))) + (base32 "1ipnkdi8wgv519mvwa5zxlz20wipbypyfixjv2qdfd9vl1pznwvs")) + (patches (search-patches "grantlee-fix-i586-precision.patch")))) (native-inputs ;; Optional: lcov and cccc, both are for code coverage (list doxygen)) |