Removing MAKE_JOBS_FIFO from %ENV causes FreeBSD make to forget about
Nicholas Clark [Tue, 27 Dec 2005 00:29:33 +0000 (00:29 +0000)]
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

lib/ExtUtils/t/basic.t

index ba47687..cf6701c 100644 (file)
@@ -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';