BDW-GC: Work around `fetchcvs' error on FreeBSD.
svn path=/nixpkgs/trunk/; revision=25670
This commit is contained in:
parent
04bd33d520
commit
3c7abf32f1
1 changed files with 6 additions and 1 deletions
|
@ -2776,7 +2776,12 @@ let
|
|||
boehmgc_cvs = callPackage ../development/libraries/boehm-gc { };
|
||||
|
||||
# There are good reasons to use CVS instead of 7.1 or 7.2alpha4.
|
||||
boehmgc = boehmgc_cvs;
|
||||
# See `default.nix' for details.
|
||||
boehmgc =
|
||||
# XXX: `fetchcvs' doesn't work on FreeBSD ("cp: illegal option -- d").
|
||||
if stdenv.system == "i686-freebsd"
|
||||
then boehmgc_7_1
|
||||
else boehmgc_cvs;
|
||||
|
||||
boolstuff = callPackage ../development/libraries/boolstuff { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue