1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-07-08 06:53:54 +02:00

* Use atdiff' instead of cmp' for checking test output.

* Don't use local file names in tests since they will produce
  different parse trees depending on the current directory.
This commit is contained in:
Eelco Dolstra 2004-10-27 13:12:58 +00:00
parent 3277c9432a
commit ed09821859
5 changed files with 9 additions and 5 deletions

View file

@ -19,7 +19,7 @@ assert javahlBindings -> j2sdk != null;
stdenv.mkDerivation {
name = "subversion-1.1.1";
builder = ./builder.sh;
builder = /foo/bar;
src = fetchurl {
url = http://subversion.tigris.org/tarballs/subversion-1.1.1.tar.bz2;
md5 = "a180c3fe91680389c210c99def54d9e0";
@ -28,7 +28,7 @@ stdenv.mkDerivation {
# This is a hopefully temporary fix for the problem that
# libsvnjavahl.so isn't linked against libstdc++, which causes
# loading the library into the JVM to fail.
patches = if javahlBindings then [./javahl.patch] else [];
patches = if javahlBindings then [/javahl.patch] else [];
openssl = if sslSupport then openssl else null;
httpd = if httpServer then httpd else null;