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

View file

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