diff options
author | Mark H Weaver <mhw@netris.org> | 2018-01-09 21:09:22 -0500 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2018-03-16 09:31:00 -0400 |
commit | 45413064c9db1712c845e5a1065aa81f66667abe (patch) | |
tree | 0cb84865b06f563fb8816ab834c50668af7ce420 /gnu/packages/base.scm | |
parent | 60ff6ec48f9177416c9ed3f98e0a6fb134b7f3e5 (diff) | |
download | guix-45413064c9db1712c845e5a1065aa81f66667abe.tar guix-45413064c9db1712c845e5a1065aa81f66667abe.tar.gz |
gnu: tar: Fix sparse file detection on Btrfs file systems.
* gnu/packages/patches/tar-remove-wholesparse-check.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add it.
* gnu/packages/base.scm (tar)[source]: Add patch.
Diffstat (limited to 'gnu/packages/base.scm')
-rw-r--r-- | gnu/packages/base.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/base.scm b/gnu/packages/base.scm index 7dd9474d57..892a41601b 100644 --- a/gnu/packages/base.scm +++ b/gnu/packages/base.scm @@ -177,7 +177,8 @@ implementation offers several extensions over the standard utility.") (sha256 (base32 "1lyjyk8z8hdddsxw0ikchrsfg3i0x3fsh7l63a8jgaz1n7dr5gzi")) - (patches (search-patches "tar-skip-unreliable-tests.patch")))) + (patches (search-patches "tar-skip-unreliable-tests.patch" + "tar-remove-wholesparse-check.patch")))) (build-system gnu-build-system) ;; Note: test suite requires ~1GiB of disk space. (arguments |