Fixing nfsUtils rpc.statd about pointing to the sm-notify binary. It pointed to

/usr/sbin

svn path=/nixpkgs/trunk/; revision=21689
This commit is contained in:
Lluís Batlle i Rossell 2010-05-09 19:14:06 +00:00
parent fd8c6ae43d
commit 7ccbfc1746

View File

@ -18,11 +18,13 @@ stdenv.mkDerivation rec {
];
patchPhase =
'' for i in "tests/"*.sh
do
sed -i "$i" -e's|/bin/bash|/bin/sh|g'
chmod +x "$i"
done
''
for i in "tests/"*.sh
do
sed -i "$i" -e's|/bin/bash|/bin/sh|g'
chmod +x "$i"
done
sed -i s,/usr/sbin,$out/sbin, utils/statd/statd.c
'';
preBuild =