diff options
author | Ludovic Courtès <ludo@gnu.org> | 2019-11-22 15:12:11 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2019-11-22 15:13:25 +0100 |
commit | cf87919657bcbc422ca599007f5b111dc7807919 (patch) | |
tree | eadd9f435103f732bffe2f2567c500d3767f9228 /gnu/packages/linux.scm | |
parent | ca541f9ce692ef96f6d5638eb37f70714cedd933 (diff) | |
download | patches-cf87919657bcbc422ca599007f5b111dc7807919.tar patches-cf87919657bcbc422ca599007f5b111dc7807919.tar.gz |
gnu: libseccomp: Fix build on AArch64.
This is a followup to d100d5d5449eabd65e9c26081b7620a3d342c9eb.
* gnu/packages/patches/libseccomp-open-aarch64.patch: New file.
* gnu/packages/linux.scm (libseccomp)[source]: Use it.
* gnu/local.mk (dist_patch_DATA): Add it.
Diffstat (limited to 'gnu/packages/linux.scm')
-rw-r--r-- | gnu/packages/linux.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index f424eb0db8..9941129ba7 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -4794,7 +4794,8 @@ of flash storage.") "/libseccomp-" version ".tar.gz")) (sha256 (base32 - "0nsq81acrbkdr8zairxbwa33bj2a6126npp76b4srjl472sjfkxm")))) + "0nsq81acrbkdr8zairxbwa33bj2a6126npp76b4srjl472sjfkxm")) + (patches (search-patches "libseccomp-open-aarch64.patch")))) (build-system gnu-build-system) (native-inputs `(("which" ,which))) |