I had also to disable the tests for 'net' in go for it to build in chroot.

(I thought I had chroots enabled in my computer - I did not, hence so much commits)

svn path=/nixpkgs/trunk/; revision=22232
This commit is contained in:
Lluís Batlle i Rossell 2010-06-12 11:45:30 +00:00
parent 2ba5bba371
commit 22b3336161

View file

@ -33,9 +33,9 @@ stdenv.mkDerivation {
-e 's,/bin/echo,${stdenv.coreutils}/bin/echo,' \
src/pkg/exec/exec_test.go
# Disabling the 'os' test (it wants to call hostname, and I don't
# know if we have that ready in chroot builds)
sed -i -e '/^NOTEST=/a\\tos\\\n\thttp\\' src/pkg/Makefile
# Disabling the 'os/http/net' tests (they want files not available in
# chroot builds)
sed -i -e '/^NOTEST=/a\\tos\\\n\thttp\\\n\tnet\\' src/pkg/Makefile
sed -i -e 's,/bin:/usr/bin:/usr/local/bin,'$PATH, test/run
sed -i -e 's,/usr/bin/perl,${perl}/bin/perl,' test/errchk