numpy: fix build on darwin

* remove unnecessary gcc flag
This commit is contained in:
Jason "Don" O'Conal 2013-07-14 13:42:33 +10:00
parent e193a4f898
commit c8cc4128ac

View file

@ -3064,6 +3064,10 @@ pythonPackages = python.modules // rec {
sha256 = "1pawfmf7j7pd3mjzhmmw9hkglc2qdirrkvv29m5nsmpf2b3ip2vq";
};
preConfigure = ''
sed -i 's/-faltivec//' numpy/distutils/system_info.py
'';
# TODO: add ATLAS=${pkgs.atlas}
installCommand = ''
export BLAS=${pkgs.blas} LAPACK=${pkgs.liblapack}