zerotierone: hardcoded path fix

New code in zerotier broke the previous substitution where we refer to
the correct path for "ip".

+1 -1
+1 -1
pkgs/tools/networking/zerotierone/default.nix
··· 17 substituteInPlace ./make-linux.mk \ 18 --replace 'CXX=$(shell which clang++ g++ c++ 2>/dev/null | head -n 1)' "CC=${gcc}/bin/g++"; 19 substituteInPlace ./osdep/LinuxEthernetTap.cpp \ 20 - --replace '/sbin/ip' "${iproute}/bin/ip" 21 ''; 22 23 buildInputs = [ openssl lzo zlib gcc iproute ];
··· 17 substituteInPlace ./make-linux.mk \ 18 --replace 'CXX=$(shell which clang++ g++ c++ 2>/dev/null | head -n 1)' "CC=${gcc}/bin/g++"; 19 substituteInPlace ./osdep/LinuxEthernetTap.cpp \ 20 + --replace 'execlp("ip",' 'execlp("${iproute}/bin/ip",' 21 ''; 22 23 buildInputs = [ openssl lzo zlib gcc iproute ];