From: Nicholas Clark Date: Tue, 27 Dec 2005 00:29:33 +0000 (+0000) Subject: Removing MAKE_JOBS_FIFO from %ENV causes FreeBSD make to forget about X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=e16fcd08233370584746d45f250e423bd2f11ec2;p=p5sagit%2Fp5-mst-13.2.git Removing MAKE_JOBS_FIFO from %ENV causes FreeBSD make to forget about any -j flags. (And their implied disabling of backwards compatibility, which is the real cause of the make disttest failure). p4raw-id: //depot/perl@26499 --- diff --git a/lib/ExtUtils/t/basic.t b/lib/ExtUtils/t/basic.t index ba47687..cf6701c 100644 --- a/lib/ExtUtils/t/basic.t +++ b/lib/ExtUtils/t/basic.t @@ -25,7 +25,7 @@ use File::Path; # 'make disttest' sets a bunch of environment variables which interfere # with our testing. -delete @ENV{qw(PREFIX LIB MAKEFLAGS)}; +delete @ENV{qw(PREFIX LIB MAKEFLAGS MAKE_JOBS_FIFO)}; my $perl = which_perl(); my $Is_VMS = $^O eq 'VMS';