diff options
author | Ludovic Courtès <ludo@gnu.org> | 2015-06-15 23:34:01 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2015-06-15 23:34:01 +0200 |
commit | 25cc3fe7032274f9cb6a6f584cd7190be33a40e1 (patch) | |
tree | 4362b9675083c42ed1d0683a8d468ed331ff18e1 /gnu/packages/gettext.scm | |
parent | 1f175851e6c2916e8bd61e79052094fa7274a3d0 (diff) | |
download | guix-25cc3fe7032274f9cb6a6f584cd7190be33a40e1.tar guix-25cc3fe7032274f9cb6a6f584cd7190be33a40e1.tar.gz |
gnu: gettext: Fix non-deterministic msgunfmt behavior.
Suggested by Alírio Eyng <alirioeyng@gmail.com>.
* gnu/packages/patches/gettext-msgunfmt.patch: New file.
* gnu/packages/gettext.scm (gnu-gettext)[source]: Use it.
* gnu-system.am (dist_patch_DATA): Add it.
Diffstat (limited to 'gnu/packages/gettext.scm')
-rw-r--r-- | gnu/packages/gettext.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/gettext.scm b/gnu/packages/gettext.scm index 3a96cd613c..9289946178 100644 --- a/gnu/packages/gettext.scm +++ b/gnu/packages/gettext.scm @@ -42,7 +42,8 @@ version ".tar.gz")) (sha256 (base32 - "0gvz86m4cs8bdf3mwmwsyx6lrq4ydfxgadrgd9jlx32z3bnz3jca")))) + "0gvz86m4cs8bdf3mwmwsyx6lrq4ydfxgadrgd9jlx32z3bnz3jca")) + (patches (list (search-patch "gettext-msgunfmt.patch"))))) (build-system gnu-build-system) (inputs `(("expat" ,expat))) |