From 8cf1f739e2ddeed25fe2c8d2a74a8c978c3e2fd3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= Date: Sat, 27 Feb 2010 20:02:21 +0000 Subject: [PATCH] Fixing the cross-glibc soft float case. svn path=/nixpkgs/trunk/; revision=20276 --- pkgs/development/libraries/glibc-2.11/common.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/libraries/glibc-2.11/common.nix b/pkgs/development/libraries/glibc-2.11/common.nix index 77a89f74490..fcdccd90f2e 100644 --- a/pkgs/development/libraries/glibc-2.11/common.nix +++ b/pkgs/development/libraries/glibc-2.11/common.nix @@ -68,7 +68,7 @@ stdenv.mkDerivation ({ else "--disable-profile") ] ++ stdenv.lib.optionals (cross != null) [ (if cross.withTLS then "--with-tls" else "--without-tls") - (if cross.float == "float" then "--without-fp" else "--with-fp") + (if cross.float == "soft" then "--without-fp" else "--with-fp") "--enable-kernel=2.6.0" "--with-__thread" ] ++ stdenv.lib.optionals (stdenv.system == "armv5tel-linux") [