From 609710f10217b431c6fe6f2694b616fd50c2bcc0 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Thu, 26 Oct 2006 22:41:46 +0000 Subject: [PATCH] * Enable the pure stdenv-linux for powerpc. svn path=/nixpkgs/trunk/; revision=6867 --- pkgs/stdenv/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/stdenv/default.nix b/pkgs/stdenv/default.nix index 46a991e7a666..d3e419092ba7 100644 --- a/pkgs/stdenv/default.nix +++ b/pkgs/stdenv/default.nix @@ -92,6 +92,7 @@ rec { stdenv = if stdenvType == "i686-linux" then stdenvLinux else if stdenvType == "x86_64-linux" then stdenvLinux else + if stdenvType == "powerpc-linux" then stdenvLinux else if stdenvType == "i686-freebsd" then stdenvFreeBSD else if stdenvType == "i686-cygwin" then stdenvCygwin else if stdenvType == "i686-mingw" then stdenvMinGW else