diff options
author | Ludovic Courtès <ludo@gnu.org> | 2014-03-26 16:31:57 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2014-03-26 16:31:57 +0100 |
commit | 4979ee04f07defb55dc448a5682913dc41935760 (patch) | |
tree | 03d0a1ed2bd7c7d141d2af09ea01b66fa62e3d88 /gnu/packages/compression.scm | |
parent | 07fb21b231b8d86cc17beff64111759b972ffcac (diff) | |
parent | eafee15b3ce3638058c43974244964dbd48ec15d (diff) | |
download | guix-4979ee04f07defb55dc448a5682913dc41935760.tar.gz guix-4979ee04f07defb55dc448a5682913dc41935760.zip |
Merge branch 'core-updates'
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) |