1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-08 06:00:36 +02:00

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

View File

@@ -121,7 +121,8 @@ configuration files.")
(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")))