mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 14:41:17 +00:00
iproute: Fix reference to /etc instead of /etc at runtime
This commit is contained in:
parent
4984bfe807
commit
fa0b84c446
|
@ -19,11 +19,18 @@ stdenv.mkDerivation rec {
|
|||
"DESTDIR="
|
||||
"LIBDIR=$(out)/lib"
|
||||
"SBINDIR=$(out)/sbin"
|
||||
"CONFDIR=$(out)/etc"
|
||||
"DOCDIR=$(out)/share/doc/${name}"
|
||||
"MANDIR=$(out)/share/man"
|
||||
];
|
||||
|
||||
buildFlags = [
|
||||
"CONFDIR=/etc"
|
||||
];
|
||||
|
||||
installFlags = [
|
||||
"CONFDIR=$(out)/etc"
|
||||
];
|
||||
|
||||
buildInputs = [ db iptables ];
|
||||
nativeBuildInputs = [ bison flex pkgconfig ];
|
||||
|
||||
|
|
Loading…
Reference in a new issue