nckx pushed a commit to branch master
in repository guix.

commit a926109d623b0faa0f09855e7647a629a45f979a
Author: Tobias Geerinckx-Rice <m...@tobias.gr>
Date:   Mon Oct 1 23:29:04 2018 +0200

    gnu: ndctl: Return #t from phases.
    
    * gnu/packages/disk (ndctl)[arguments]: Rename inaccurately named
    'autogen' phase to 'patch-FHS-file-names'. Explicitly return #t.
---
 gnu/packages/disk.scm | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/disk.scm b/gnu/packages/disk.scm
index 58c867d..fa3a043 100644
--- a/gnu/packages/disk.scm
+++ b/gnu/packages/disk.scm
@@ -630,14 +630,15 @@ passphrases.")
     (arguments
      `(#:phases
        (modify-phases %standard-phases
-         (add-after 'unpack 'autogen
+         (add-after 'unpack 'patch-FHS-file-names
            (lambda _
              (substitute* "autogen.sh"
                (("/bin/sh") (which "sh")))
              (substitute* "git-version-gen"
                (("/bin/sh") (which "sh")))
              (substitute* "git-version"
-               (("/bin/bash") (which "bash"))))))
+               (("/bin/bash") (which "bash")))
+             #t)))
        #:make-flags
        (let ((out (assoc-ref %outputs "out")))
          (list (string-append "BASH_COMPLETION_DIR=" out

Reply via email to