From c2386b3c91db605fe4b6546d82cae0d642a64003 Mon Sep 17 00:00:00 2001 From: Nicolas Pierron Date: Sat, 20 Aug 2011 15:41:03 +0000 Subject: [PATCH] gdb Cross-Compilation: try to disable python. svn path=/nixpkgs/trunk/; revision=28714 --- pkgs/development/tools/misc/gdb/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/tools/misc/gdb/default.nix b/pkgs/development/tools/misc/gdb/default.nix index da1864a90548..4c588295ec5a 100644 --- a/pkgs/development/tools/misc/gdb/default.nix +++ b/pkgs/development/tools/misc/gdb/default.nix @@ -49,7 +49,7 @@ stdenv.mkDerivation rec { # Do not add --with-python here to avoid cross building it. configureFlags = '' --with-gmp=${gmp.hostDrv} --with-mpfr=${mpfr.hostDrv} --with-system-readline - --with-expat --with-libexpat-prefix=${expat.hostDrv} + --with-expat --with-libexpat-prefix=${expat.hostDrv} --without-python '' + stdenv.lib.optionalString (target != null) " --target=${target.config}"; };