summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2010-11-08 17:56:45 +0000
committerPeter Simons <simons@cryp.to>2010-11-08 17:56:45 +0000
commite48bf66bf2315fcf8d1ec7f74b849df9ec66f65b (patch)
treee585a5f994d044d9333fe9f1a28aa32cae2c7cef /pkgs/applications
parent95c614def0fe24cc9ab7083a66f596e35caf0e72 (diff)
downloadnixpkgs-e48bf66bf2315fcf8d1ec7f74b849df9ec66f65b.tar
nixpkgs-e48bf66bf2315fcf8d1ec7f74b849df9ec66f65b.tar.gz
nixpkgs-e48bf66bf2315fcf8d1ec7f74b849df9ec66f65b.tar.bz2
nixpkgs-e48bf66bf2315fcf8d1ec7f74b849df9ec66f65b.tar.lz
nixpkgs-e48bf66bf2315fcf8d1ec7f74b849df9ec66f65b.tar.xz
nixpkgs-e48bf66bf2315fcf8d1ec7f74b849df9ec66f65b.tar.zst
nixpkgs-e48bf66bf2315fcf8d1ec7f74b849df9ec66f65b.zip
rcs: fixed build error introduced in my last commit
This package's configure script is too old to support "--mandir". Instead, the
default settings have to be overridden on the make command-line.

svn path=/nixpkgs/trunk/; revision=24620
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/version-management/rcs/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/version-management/rcs/default.nix b/pkgs/applications/version-management/rcs/default.nix
index 32696a6d7ac..38c1d38e349 100644
--- a/pkgs/applications/version-management/rcs/default.nix
+++ b/pkgs/applications/version-management/rcs/default.nix
@@ -11,7 +11,7 @@ stdenv.mkDerivation {
   patches = [ ./no-root.patch ];
 
   preConfigure = ''
-    configureFlags="--infodir=$out/share/info --mandir=$out/share/man"
+    makeFlags="man1dir=$out/share/man/man1 man5dir=$out/share/man/man5";
   '';
 
   meta = {