* Use stdenv.isDarwin.

svn path=/nixpkgs/trunk/; revision=5728
This commit is contained in:
Eelco Dolstra
2006-07-17 11:07:32 +00:00
parent 1fc6ce85c4
commit fbf526d408
4 changed files with 4 additions and 8 deletions

View File

@@ -9,5 +9,5 @@
# Quick fix for a Makefile bug in openssl-0.9.8 (`make install'
# tries to copy .so files, instead of .dylib files).
patches = if stdenv.system == "powerpc-darwin" then [./dylib.patch] else [];
patches = if stdenv.isDarwin then [./dylib.patch] else [];
}

View File

@@ -6,5 +6,4 @@
sha1 = "99565db630a044fa484d4f91006a31908f262246";
};
buildInputs = [perl];
# patches = [./darwin-makefile.patch];
}