Author: viric
Date: 2010-06-12 11:45:30 +0000 (Sat, 12 Jun 2010)
New Revision: 22232

You can view the changes in this commit at:
   https://svn.nixos.org/viewvc/nix?rev=22232&view=rev

Modified:
   nixpkgs/trunk/pkgs/development/compilers/go/default.nix

Log:
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)

Changes:

Modified: nixpkgs/trunk/pkgs/development/compilers/go/default.nix
===================================================================
--- nixpkgs/trunk/pkgs/development/compilers/go/default.nix     2010-06-12 
11:31:39 UTC (rev 22231)
+++ nixpkgs/trunk/pkgs/development/compilers/go/default.nix     2010-06-12 
11:45:30 UTC (rev 22232)
@@ -33,9 +33,9 @@
       -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

_______________________________________________
nix-commits mailing list
[email protected]
http://mail.cs.uu.nl/mailman/listinfo/nix-commits

Reply via email to