forked from mirrors/nixpkgs
subversion: fix build on darwin
* remove useless -no-cpp-precomp flags
This commit is contained in:
parent
4ecbe3bf5d
commit
bd3c2c76c7
|
@ -49,6 +49,8 @@ stdenv.mkDerivation rec {
|
|||
|
||||
preBuild = ''
|
||||
makeFlagsArray=(APACHE_LIBEXECDIR=$out/modules)
|
||||
'' + stdenv.lib.optionalString stdenv.isDarwin ''
|
||||
substituteInPlace configure --replace "-no-cpp-precomp" ""
|
||||
'';
|
||||
|
||||
postInstall = ''
|
||||
|
@ -74,7 +76,7 @@ stdenv.mkDerivation rec {
|
|||
meta = {
|
||||
description = "A version control system intended to be a compelling replacement for CVS in the open source community";
|
||||
homepage = http://subversion.apache.org/;
|
||||
maintainers = [ stdenv.lib.maintainers.eelco ];
|
||||
maintainers = with stdenv.lib.maintainers; [ eelco lovek323 ];
|
||||
platforms = stdenv.lib.platforms.all;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue