summaryrefslogtreecommitdiffstats
path: root/pkgs/tools/text/colordiff
diff options
context:
space:
mode:
authorYury G. Kudryashov <urkud.urkud@gmail.com>2011-10-09 18:45:47 +0000
committerYury G. Kudryashov <urkud.urkud@gmail.com>2011-10-09 18:45:47 +0000
commit8d9482648638052a68935c7152c71f43880d4d0a (patch)
tree8906c47d56eae6e8a0be8dfa4ab808cb7e313781 /pkgs/tools/text/colordiff
parent9caf409d96cfd0fc7ca4059421559a04a2dc5e0a (diff)
colordiff: fix man install path
svn path=/nixpkgs/trunk/; revision=29735
Diffstat (limited to 'pkgs/tools/text/colordiff')
-rw-r--r--pkgs/tools/text/colordiff/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/text/colordiff/default.nix b/pkgs/tools/text/colordiff/default.nix
index 07ce3de3d13d..06e15d07ff09 100644
--- a/pkgs/tools/text/colordiff/default.nix
+++ b/pkgs/tools/text/colordiff/default.nix
@@ -9,5 +9,5 @@ stdenv.mkDerivation {
buildInputs = [ perl /* xmlto */ ];
dontBuild = 1; # do not build doc yet.
- installPhase = ''make INSTALL_DIR=/bin MAN_DIR=/man DESTDIR="$out" install'';
+ installPhase = ''make INSTALL_DIR=/bin MAN_DIR=/share/man/man1 DESTDIR="$out" install'';
}