gnu: xxd: Return true from all phases.

* gnu/packages/vim.scm (xxd)[arguments]: Return '#t' from custom 'chdir
phase.
This commit is contained in:
Efraim Flashner 2018-06-02 22:34:23 +03:00
parent 15dcd292df
commit 2d4fdb707e
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 2 additions and 1 deletions

View File

@ -121,7 +121,8 @@ configuration files.")
(delete 'configure) (delete 'configure)
(add-after 'unpack 'chdir (add-after 'unpack 'chdir
(lambda _ (lambda _
(chdir "src/xxd"))) (chdir "src/xxd")
#t))
(replace 'install (replace 'install
(lambda* (#:key outputs #:allow-other-keys) (lambda* (#:key outputs #:allow-other-keys)
(let ((bin (string-append (assoc-ref outputs "out") "/bin"))) (let ((bin (string-append (assoc-ref outputs "out") "/bin")))