gnu: ncurses: Install man pages in share/man/man*, not man/man*.
* gnu/packages/ncurses.scm (ncurses): Add --mandir configure flag.
This commit is contained in:
parent
39b71fc89b
commit
b1d5f5da84
1 changed files with 6 additions and 0 deletions
|
@ -1,5 +1,6 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2012, 2013 Ludovic Courtès <ludo@gnu.org>
|
;;; Copyright © 2012, 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.
|
||||||
;;;
|
;;;
|
||||||
|
@ -99,6 +100,11 @@
|
||||||
,(string-append "--includedir=" (assoc-ref %outputs "out")
|
,(string-append "--includedir=" (assoc-ref %outputs "out")
|
||||||
"/include")
|
"/include")
|
||||||
|
|
||||||
|
;; By default man pages land in PREFIX/man, but we want them
|
||||||
|
;; in PREFIX/share/man.
|
||||||
|
,(string-append "--mandir=" (assoc-ref %outputs "out")
|
||||||
|
"/share/man")
|
||||||
|
|
||||||
;; C++ bindings fail to build on
|
;; C++ bindings fail to build on
|
||||||
;; `i386-pc-solaris2.11' with GCC 3.4.3:
|
;; `i386-pc-solaris2.11' with GCC 3.4.3:
|
||||||
;; <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=6395191>.
|
;; <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=6395191>.
|
||||||
|
|
Reference in a new issue