gnu: bzip2: Install man pages to share/man/man1, not share/man1.
* gnu/packages/compression.scm (bzip2)[fix-man-dir]: Rename "man" to "share/man", not "share".
This commit is contained in:
parent
b1d5f5da84
commit
afd1cff148
|
@ -1,6 +1,7 @@
|
||||||
;;; 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 © 2013 Andreas Enge <andreas@enge.fr>
|
;;; Copyright © 2013 Andreas Enge <andreas@enge.fr>
|
||||||
|
;;; Copyright © 2014 Mark H Weaver <mhw@netris.org>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -100,7 +101,7 @@ file; as a result, it is often used in conjunction with \"tar\", resulting in
|
||||||
'(lambda* (#:key outputs #:allow-other-keys)
|
'(lambda* (#:key outputs #:allow-other-keys)
|
||||||
(with-directory-excursion (assoc-ref outputs "out")
|
(with-directory-excursion (assoc-ref outputs "out")
|
||||||
(mkdir "share")
|
(mkdir "share")
|
||||||
(rename-file "man" "share"))))
|
(rename-file "man" "share/man"))))
|
||||||
(build-shared-lib
|
(build-shared-lib
|
||||||
;; Build a shared library.
|
;; Build a shared library.
|
||||||
'(lambda* (#:key inputs #:allow-other-keys)
|
'(lambda* (#:key inputs #:allow-other-keys)
|
||||||
|
|
Loading…
Reference in New Issue