From: Jarkko Hietaniemi Date: Sun, 27 May 2001 22:44:49 +0000 (+0000) Subject: The PERL_DL_NONLAZY can have whitespace in front. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=737e87b07f62e6b8f30278331684c3f57ce8be3c;p=p5sagit%2Fp5-mst-13.2.git The PERL_DL_NONLAZY can have whitespace in front. p4raw-id: //depot/perl@10240 --- diff --git a/t/lib/extutils.t b/t/lib/extutils.t index 599116c..e18c225 100644 --- a/t/lib/extutils.t +++ b/t/lib/extutils.t @@ -185,7 +185,7 @@ if ($?) { print "not ok 8 # $make failed: $?\n"; } else { # Perl babblings - $makeout =~ s/^PERL_DL_NONLAZY=.+?\n//m; + $makeout =~ s/^\s*PERL_DL_NONLAZY=.+?\n//m; # GNU make babblings $makeout =~ s/^\w*?make.+?(?:entering|leaving) directory.+?\n//mig;