mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
Merge pull request #30759 from FlorentBecker/pptp_route
pptp: correct reference to ${iproute}/bin/ip
This commit is contained in:
commit
1f966e93f6
@ -12,12 +12,12 @@ stdenv.mkDerivation rec {
|
||||
patchPhase =
|
||||
''
|
||||
sed -e 's/install -o root/install/' -i Makefile
|
||||
sed -e 's,/bin/ip,${iproute}/sbin/ip,' -i routing.c
|
||||
'';
|
||||
preConfigure =
|
||||
''
|
||||
makeFlagsArray=( PPPD=${ppp}/sbin/pppd BINDIR=$out/sbin \
|
||||
MANDIR=$out/share/man/man8 PPPDIR=$out/etc/ppp )
|
||||
makeFlagsArray=( IP=${iproute}/bin/ip PPPD=${ppp}/sbin/pppd \
|
||||
BINDIR=$out/sbin MANDIR=$out/share/man/man8 \
|
||||
PPPDIR=$out/etc/ppp )
|
||||
'';
|
||||
|
||||
nativeBuildInputs = [ perl which ];
|
||||
|
Loading…
Reference in New Issue
Block a user