diff options
author | Marius Bakke <mbakke@fastmail.com> | 2018-08-19 15:24:59 +0200 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2018-08-19 15:24:59 +0200 |
commit | a7bc1588e6b8ad4a890d9cc884016f36f92f2e7d (patch) | |
tree | 284cc0af9edb74bfafad70b5a6fac9ad8b07b532 /gnu/packages/backup.scm | |
parent | 8a502c3b60fdd5d8ee0b08e1c9d4c0d7fedc2fda (diff) | |
parent | df570bf271536399993b39e7ea2ea0452bb6cde4 (diff) | |
download | guix-a7bc1588e6b8ad4a890d9cc884016f36f92f2e7d.tar guix-a7bc1588e6b8ad4a890d9cc884016f36f92f2e7d.tar.gz |
Merge branch 'staging'
Diffstat (limited to 'gnu/packages/backup.scm')
-rw-r--r-- | gnu/packages/backup.scm | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/gnu/packages/backup.scm b/gnu/packages/backup.scm index eaffa4fdb1..531adb598b 100644 --- a/gnu/packages/backup.scm +++ b/gnu/packages/backup.scm @@ -495,8 +495,21 @@ detection, and lossless compression.") (modules '((guix build utils))) (snippet '(begin + ;; Delete files generated by Cython. We used to have a regex + ;; that created the list of generated files but Borg has + ;; added new non-generated C files that cause the regex to + ;; generate the wrong list. (for-each delete-file - (find-files "borg" "^(c|h|p).*\\.c$")) + '("src/borg/algorithms/checksums.c" + "src/borg/chunker.c" + "src/borg/compress.c" + "src/borg/crypto/low_level.c" + "src/borg/hashindex.c" + "src/borg/item.c" + "src/borg/platform/darwin.c" + "src/borg/platform/freebsd.c" + "src/borg/platform/linux.c" + "src/borg/platform/posix.c")) ;; Remove bundled shared libraries. (with-directory-excursion "src/borg/algorithms" (for-each delete-file-recursively |