* Treat i686-darwin as powerpc-darwin.

svn path=/nixpkgs/trunk/; revision=5604
This commit is contained in:
Eelco Dolstra
2006-07-06 09:30:40 +00:00
parent f968ef400f
commit e410c935a1
2 changed files with 7 additions and 4 deletions
+1 -1
View File
@@ -3,7 +3,7 @@
stdenv.mkDerivation {
name = "bzip2-1.0.3";
builder =
if stdenv.system == "powerpc-darwin" then ./builder-darwin.sh
if stdenv.system == "powerpc-darwin" || stdenv.system == "i686-darwin" then ./builder-darwin.sh
else if stdenv.system == "i686-freebsd" then ./builder-freebsd.sh
else if stdenv.system == "i686-cygwin" then ./builder-cygwin.sh
else ./builder.sh;