mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2026-04-06 21:20:33 +02:00
gnu: checkmake: Fix man page path.
* gnu/packages/check.scm (checkmake)[arguments]<#:phases>{install-man}:
Correct man page name and set its location to be in man1.
Fixes: guix/guix#3903
Change-Id: I640e52e6f11184d38480d1bb458ebecf80212f44
Signed-off-by: Andreas Enge <andreas@enge.fr>
This commit is contained in:
committed by
Andreas Enge
parent
e11b178721
commit
e8938b2759
@@ -377,11 +377,11 @@ source code editors and IDEs.")
|
||||
(add-after 'install 'install-man
|
||||
(lambda* (#:key import-path #:allow-other-keys)
|
||||
(with-directory-excursion (string-append "src/" import-path)
|
||||
(let ((man-dir (string-append #$output "/share/man")))
|
||||
(let ((man-dir (string-append #$output "/share/man/man1")))
|
||||
(mkdir-p man-dir)
|
||||
(invoke "go-md2man"
|
||||
"-in" "man/man1/checkmake.1.md"
|
||||
"-out" (string-append man-dir "/man1")))))))))
|
||||
"-out" (string-append man-dir "/checkmake.1")))))))))
|
||||
(native-inputs
|
||||
(list go-github-com-docopt-docopt-go
|
||||
go-github-com-go-ini-ini
|
||||
|
||||
Reference in New Issue
Block a user