diff options
author | Nicholas Clark <nick@ccl4.org> | 2005-12-27 00:29:33 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2005-12-27 00:29:33 +0000 |
commit | e16fcd08233370584746d45f250e423bd2f11ec2 (patch) | |
tree | fb5b8a7eaa8d104c819a63fcf98d7dcee079d155 /lib/ExtUtils | |
parent | f2c61ea019dd3717d28c355fedebdc192c816dfb (diff) | |
download | perl-e16fcd08233370584746d45f250e423bd2f11ec2.tar.gz |
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
Diffstat (limited to 'lib/ExtUtils')
-rw-r--r-- | lib/ExtUtils/t/basic.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ExtUtils/t/basic.t b/lib/ExtUtils/t/basic.t index ba47687626..cf6701c8e1 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'; |