mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: tcl: Install man pages in share/man.
* gnu/packages/tcl.scm (tcl): Add --mandir configure flag.
This commit is contained in:
parent
b3acf3656e
commit
15f682f4a3
1 changed files with 7 additions and 0 deletions
|
@ -1,5 +1,6 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2013 Ludovic Courtès <ludo@gnu.org>
|
;;; Copyright © 2013 Ludovic Courtès <ludo@gnu.org>
|
||||||
|
;;; Copyright © 2014 Mark H Weaver <mhw@netris.org>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -56,6 +57,12 @@
|
||||||
"tclsh")))))
|
"tclsh")))))
|
||||||
%standard-phases))
|
%standard-phases))
|
||||||
|
|
||||||
|
;; By default, man pages are put in PREFIX/man,
|
||||||
|
;; but we want them in PREFIX/share/man.
|
||||||
|
#:configure-flags (list (string-append "--mandir="
|
||||||
|
(assoc-ref %outputs "out")
|
||||||
|
"/share/man"))
|
||||||
|
|
||||||
;; XXX: There are a few test failures (related to HTTP, most
|
;; XXX: There are a few test failures (related to HTTP, most
|
||||||
;; likely related to name resolution), but that doesn't cause
|
;; likely related to name resolution), but that doesn't cause
|
||||||
;; `make' to fail.
|
;; `make' to fail.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue