gnu: git: Return #t from all phases.
* gnu/packages/version-control.scm (git)[arguments]: Return #t from the 'split' phase. Use 'invoke' in the 'install-man-pages' phase.
This commit is contained in:
parent
eb075eddfc
commit
ecb67a18b0
|
@ -346,7 +346,9 @@ as well as the classic centralized workflow.")
|
||||||
(wrap-program git-sm
|
(wrap-program git-sm
|
||||||
`("PATH" ":" prefix
|
`("PATH" ":" prefix
|
||||||
(,(string-append (assoc-ref inputs "perl")
|
(,(string-append (assoc-ref inputs "perl")
|
||||||
"/bin")))))))
|
"/bin"))))
|
||||||
|
|
||||||
|
#t)))
|
||||||
(add-after 'split 'install-man-pages
|
(add-after 'split 'install-man-pages
|
||||||
(lambda* (#:key inputs outputs #:allow-other-keys)
|
(lambda* (#:key inputs outputs #:allow-other-keys)
|
||||||
(let* ((out (assoc-ref outputs "out"))
|
(let* ((out (assoc-ref outputs "out"))
|
||||||
|
@ -354,7 +356,7 @@ as well as the classic centralized workflow.")
|
||||||
(manpages (assoc-ref inputs "git-manpages")))
|
(manpages (assoc-ref inputs "git-manpages")))
|
||||||
(mkdir-p man)
|
(mkdir-p man)
|
||||||
(with-directory-excursion man
|
(with-directory-excursion man
|
||||||
(zero? (system* "tar" "xvf" manpages)))))))))
|
(invoke "tar" "xvf" manpages))))))))
|
||||||
|
|
||||||
(native-search-paths
|
(native-search-paths
|
||||||
;; For HTTPS access, Git needs a single-file certificate bundle, specified
|
;; For HTTPS access, Git needs a single-file certificate bundle, specified
|
||||||
|
|
Loading…
Reference in New Issue