1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

Merge pull request #11991 from dezgeg/pr-openssh-purity

openssh: Compile with '--with-pid-dir' to improve build purity
This commit is contained in:
Peter Simons 2015-12-28 21:49:36 +01:00
commit f3aa927b70

View file

@ -39,6 +39,7 @@ stdenv.mkDerivation rec {
# properly when cross building.
configureFlags = [
"--localstatedir=/var"
"--with-pid-dir=/run"
"--with-mantype=man"
"--with-libedit=yes"
"--disable-strip"
@ -61,6 +62,7 @@ stdenv.mkDerivation rec {
cp contrib/ssh-copy-id.1 $out/share/man/man1/
'';
installTargets = [ "install-nokeys" ];
installFlags = [
"sysconfdir=\${out}/etc/ssh"
];