gdb Cross-Compilation: try to disable python.

svn path=/nixpkgs/trunk/; revision=28714
This commit is contained in:
Nicolas Pierron 2011-08-20 15:41:03 +00:00
parent bb2716d232
commit c2386b3c91

View file

@ -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}";
};