summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2009-10-01 13:06:41 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2009-10-01 13:06:41 +0000
commit5704c1854de296e352046226d8e2b0a5cbc499d1 (patch)
tree6d02089fab69ad2f103e570e8f32a81df0e9d239 /pkgs/tools
parent8266e6050be8af2dea6fc39cf5e7d256ddaa53c6 (diff)
Fixing openssh build, so it doesn't try to put anything in /etc/ssh (and of course, it doesn't
fail if /etc/ssh/sshd_config can't be overwritten, which was my main motivation on this patch)

svn path=/nixpkgs/trunk/; revision=17573
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/networking/openssh/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/networking/openssh/default.nix b/pkgs/tools/networking/openssh/default.nix
index 6b3b09805cc7b..b91c6a89c03d0 100644
--- a/pkgs/tools/networking/openssh/default.nix
+++ b/pkgs/tools/networking/openssh/default.nix
@@ -35,5 +35,5 @@ stdenv.mkDerivation rec {
     cp contrib/ssh-copy-id.1 $out/share/man/man1/
   ";
 
-  installTargets = "install-nokeys";
+  installTargets = "install-nosysconf";
 }