mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-26 12:39:36 -05:00
gnu: git-lfs: Fix build.
* gnu/packages/version-control.scm (git-lfs)[arguments]: Fix 'install-man-pages' phase.
This commit is contained in:
parent
f5dcad8f9f
commit
aa916f343c
1 changed files with 3 additions and 2 deletions
|
@ -40,6 +40,7 @@
|
||||||
;;; Copyright © 2021 Xinglu Chen <public@yoctocell.xyz>
|
;;; Copyright © 2021 Xinglu Chen <public@yoctocell.xyz>
|
||||||
;;; Copyright © 2021 François J. <francois-oss@avalenn.eu>
|
;;; Copyright © 2021 François J. <francois-oss@avalenn.eu>
|
||||||
;;; Copyright © 2021 Julien Lepiller <julien@lepiller.eu>
|
;;; Copyright © 2021 Julien Lepiller <julien@lepiller.eu>
|
||||||
|
;;; Copyright © 2021 Guillaume Le Vaillant <glv@posteo.net>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -2876,9 +2877,9 @@ (define-public git-lfs
|
||||||
(invoke "make" "man"))
|
(invoke "make" "man"))
|
||||||
#t))
|
#t))
|
||||||
(add-after 'install 'install-man-pages
|
(add-after 'install 'install-man-pages
|
||||||
(lambda _
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
(with-directory-excursion "src/github.com/git-lfs/git-lfs/man"
|
(with-directory-excursion "src/github.com/git-lfs/git-lfs/man"
|
||||||
(let ((out (assoc-ref %outputs "out")))
|
(let ((out (assoc-ref outputs "out")))
|
||||||
(for-each
|
(for-each
|
||||||
(lambda (manpage)
|
(lambda (manpage)
|
||||||
(install-file manpage (string-append out "/share/man/man1")))
|
(install-file manpage (string-append out "/share/man/man1")))
|
||||||
|
|
Loading…
Reference in a new issue