3
0
Fork 0
forked from mirrors/nixpkgs

Gdb: Remove un-neccessary --with-python.

svn path=/nixpkgs/trunk/; revision=28849
This commit is contained in:
Nicolas Pierron 2011-08-27 15:29:04 +00:00
parent 3f02dcf735
commit fb3a64c934

View file

@ -41,7 +41,7 @@ stdenv.mkDerivation rec {
configureFlags = with stdenv.lib;
'' --with-gmp=${gmp} --with-mpfr=${mpfr} --with-system-readline
--with-expat --with-libexpat-prefix=${expat} --with-python
--with-expat --with-libexpat-prefix=${expat}
''
+ optionalString (target != null) " --target=${target.config}"
+ optionalString (elem stdenv.system platforms.cygwin) " --without-python"