Skip to content

Commit

Permalink
perl522: do not apply the patch for parallel building
Browse files Browse the repository at this point in the history
It does not apply and this version is not affected.
  • Loading branch information
orivej committed Dec 7, 2017
1 parent 8ce5ee5 commit dc4200f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions pkgs/development/interpreters/perl/default.nix
Expand Up @@ -34,12 +34,13 @@ let
patches =
[ # Do not look in /usr etc. for dependencies.
./no-sys-dirs.patch
]
++ optional (versionAtLeast version "5.24") (
# Fix parallel building: https://rt.perl.org/Public/Bug/Display.html?id=132360
(fetchurlBoot {
fetchurlBoot {
url = "https://rt.perl.org/Public/Ticket/Attachment/1502646/807252/0001-Fix-missing-build-dependency-for-pods.patch";
sha256 = "1bb4mldfp8kq1scv480wm64n2jdsqa3ar46cjp1mjpby8h5dr2r0";
})
]
++ optional stdenv.isSunOS ./ld-shared.patch
++ optional stdenv.isDarwin ./cpp-precomp.patch
++ optional (stdenv.isDarwin && versionAtLeast version "5.24") ./sw_vers.patch;
Expand Down

0 comments on commit dc4200f

Please sign in to comment.