1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-22 13:41:26 +00:00

Fixed pysvn mis-detection of the location of libpyton2.7.dylib on Darwin.

svn path=/nixpkgs/trunk/; revision=24529
This commit is contained in:
Peter Simons 2010-10-29 14:46:32 +00:00
parent a9d91547ba
commit 15ef8b5721

View file

@ -861,7 +861,9 @@ rec {
--apr-inc-dir=${pkgs.apr}/include/apr-1 \
--apr-lib-dir=${pkgs.apr}/lib \
--svn-root-dir=${pkgs.subversion}
'';
'' + (if !stdenv.isDarwin then "" else ''
sed -i -e 's|libpython2.7.dylib|lib/libpython2.7.dylib|' Makefile
'');
# The regression test suite expects locale support, which our glibc
# doesn't have by default.