diff options
author | Mark H Weaver <mhw@netris.org> | 2014-03-19 05:00:38 -0400 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2014-03-19 12:06:55 -0400 |
commit | afd1cff14831ce85fde4418cc0b98287b0367a9a (patch) | |
tree | 234ab73b54d9fd39174b0e44dc6a1a05b5b4dec2 /gnu/packages/compression.scm | |
parent | b1d5f5da8417dbd2213b92c1881f9e408d02dad9 (diff) |
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".
Diffstat (limited to 'gnu/packages/compression.scm')
-rw-r--r-- | gnu/packages/compression.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/compression.scm b/gnu/packages/compression.scm index 5275b8a8ef..72f80062c1 100644 --- a/gnu/packages/compression.scm +++ b/gnu/packages/compression.scm @@ -1,6 +1,7 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2012, 2013 Ludovic Courtès <ludo@gnu.org> ;;; Copyright © 2013 Andreas Enge <andreas@enge.fr> +;;; Copyright © 2014 Mark H Weaver <mhw@netris.org> ;;; ;;; 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) (with-directory-excursion (assoc-ref outputs "out") (mkdir "share") - (rename-file "man" "share")))) + (rename-file "man" "share/man")))) (build-shared-lib ;; Build a shared library. '(lambda* (#:key inputs #:allow-other-keys) |