diff options
author | Ludovic Courtès <ludo@gnu.org> | 2015-12-09 23:10:10 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2015-12-09 23:10:10 +0100 |
commit | 6a4db3f3612d0c0b0b425d01ff5b311f9b485f8c (patch) | |
tree | e0eea87bb1e08faa63b972bd73d7b2ee34867062 /gnu/packages/backup.scm | |
parent | d7e92b8752f6bc9e2c61c9999834392c7fe67e7e (diff) | |
download | patches-6a4db3f3612d0c0b0b425d01ff5b311f9b485f8c.tar patches-6a4db3f3612d0c0b0b425d01ff5b311f9b485f8c.tar.gz |
gnu: libarchive: Fix test failure on SELinux systems.
Reported by Jan Synáček <jan.synacek@gmail.com>
at <https://lists.gnu.org/archive/html/guix-devel/2015-11/msg00522.html>.
* gnu/packages/patches/libarchive-bsdtar-test.patch: New file.
* gnu/packages/backup.scm (libarchive)[source]: Use it.
* gnu-system.am (dist_patch_DATA): Add it.
Diffstat (limited to 'gnu/packages/backup.scm')
-rw-r--r-- | gnu/packages/backup.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/backup.scm b/gnu/packages/backup.scm index 84d27c08a6..287438e035 100644 --- a/gnu/packages/backup.scm +++ b/gnu/packages/backup.scm @@ -145,7 +145,8 @@ backups (called chunks) to allow easy burning to CD/DVD.") (patches (list (search-patch "libarchive-mtree-filename-length-fix.patch") (search-patch "libarchive-fix-lzo-test-case.patch") - (search-patch "libarchive-CVE-2013-0211.patch"))))) + (search-patch "libarchive-CVE-2013-0211.patch") + (search-patch "libarchive-bsdtar-test.patch"))))) (build-system gnu-build-system) (inputs `(("zlib" ,zlib) |