summary refs log tree commit diff
path: root/gnu/packages/vim.scm
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <me@tobias.gr>2020-02-25 01:59:37 +0100
committerTobias Geerinckx-Rice <me@tobias.gr>2020-02-25 02:00:05 +0100
commit679d41b4406d30ec5805ee8015d2ffa446a4e334 (patch)
tree674a65f41e7a8dc8f0b7e1b8f1522b012a83e890 /gnu/packages/vim.scm
parentc23b42dd55e014a5a79032cc0ef85e775cb02e8b (diff)
downloadguix-679d41b4406d30ec5805ee8015d2ffa446a4e334.tar.gz
Revert "gnu: vim: Fix build on CoW file systems."
This reverts commit b947ba77e60d3d3c5cc6a1c914096e7dab1f7db7.
Diffstat (limited to 'gnu/packages/vim.scm')
-rw-r--r--gnu/packages/vim.scm7
1 files changed, 0 insertions, 7 deletions
diff --git a/gnu/packages/vim.scm b/gnu/packages/vim.scm
index 579b21524e..67f245b26d 100644
--- a/gnu/packages/vim.scm
+++ b/gnu/packages/vim.scm
@@ -84,12 +84,6 @@
        #:parallel-tests? #f
        #:phases
        (modify-phases %standard-phases
-         (add-after 'unpack 'disable-CoW
-           ;; Disable copy-on-write (CoW) in the build directory.  Tests fail on
-           ;; btrfs (and possibly other CoW file systems) for unclear reasons.
-           ;; This needs to be run early as it only affects newly-created files.
-           (lambda _
-             (invoke "chattr" "-R" "+C" ".")))
          (add-after 'configure 'patch-config-files
            (lambda _
              (substitute* "runtime/tools/mve.awk"
@@ -134,7 +128,6 @@
      `(("libtool" ,libtool)
 
        ;; For tests.
-       ("e2fsprogs" ,e2fsprogs)         ; for chattr in disable-CoW above
        ("tzdata" ,tzdata-for-tests)))
     (home-page "https://www.vim.org/")
     (synopsis "Text editor based on vi")