diff options
author | Sergei Trofimovich <slyfox@inbox.ru> | 2017-03-06 22:21:43 +0000 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2017-04-13 14:44:27 +0200 |
commit | dc4ebebd61896b1122fde97644325d06e3f46b47 (patch) | |
tree | 4133f59b81ebe7fabc34ec3f12fd1ed3fcf1b390 /gnu/packages/libffi.scm | |
parent | bd54c5e3faa9fc46b00428be2f7a5e16afc64f5e (diff) | |
download | patches-dc4ebebd61896b1122fde97644325d06e3f46b47.tar patches-dc4ebebd61896b1122fde97644325d06e3f46b47.tar.gz |
gnu: libffi: Fix builds on Alpha.
* gnu/packages/patches/libffi-3.2.1-complex_alpha.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add it.
* gnu/packages/libffi.scm (libffi)[source]: Use it.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu/packages/libffi.scm')
-rw-r--r-- | gnu/packages/libffi.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/libffi.scm b/gnu/packages/libffi.scm index 13938f7ee8..16475affe6 100644 --- a/gnu/packages/libffi.scm +++ b/gnu/packages/libffi.scm @@ -42,7 +42,8 @@ name "-" version ".tar.gz")) (sha256 (base32 - "0dya49bnhianl0r65m65xndz6ls2jn1xngyn72gd28ls3n7bnvnh")))) + "0dya49bnhianl0r65m65xndz6ls2jn1xngyn72gd28ls3n7bnvnh")) + (patches (search-patches "libffi-3.2.1-complex-alpha.patch")))) (build-system gnu-build-system) (arguments `(#:phases (alist-cons-after 'install 'post-install ,post-install-phase |