mirror of
https://github.com/moparisthebest/wget
synced 2024-07-03 16:38:41 -04:00
* WgetFeature.pm: Fixed finding of WgetFeature.cfg when using separate
build dirs. * WgetFeature.pm: Fixed warning from BLOCK eval, made it indo EXPR eval This fixes 'make distcheck' and removes a warning.
This commit is contained in:
parent
c6300a3ac7
commit
5e71d5aea1
@ -1,3 +1,8 @@
|
|||||||
|
2014-11-03 Pär Karlsson <feinorgh@gmail.com>
|
||||||
|
* WgetFeature.pm: Fixed finding of WgetFeature.cfg when using separate
|
||||||
|
build dirs.
|
||||||
|
* WgetFeature.pm: Fixed warning from BLOCK eval, made it indo EXPR eval
|
||||||
|
|
||||||
2014-11-03 Tim Ruehsen <tim.ruehsen@gmx.de>
|
2014-11-03 Tim Ruehsen <tim.ruehsen@gmx.de>
|
||||||
|
|
||||||
* added new test Test-proxied-https-auth-keepalive.px
|
* added new test Test-proxied-https-auth-keepalive.px
|
||||||
|
@ -7,18 +7,18 @@ our $VERSION = 0.01;
|
|||||||
|
|
||||||
use Carp;
|
use Carp;
|
||||||
use English qw(-no_match_vars);
|
use English qw(-no_match_vars);
|
||||||
|
use FindBin;
|
||||||
use WgetTests;
|
use WgetTests;
|
||||||
|
|
||||||
our %SKIP_MESSAGES;
|
our %SKIP_MESSAGES;
|
||||||
{
|
{
|
||||||
open my $fh, '<', 'WgetFeature.cfg'
|
my $cfgfile = "$FindBin::Bin/WgetFeature.cfg";
|
||||||
or croak "Cannot open 'WgetFeature.cfg': $ERRNO";
|
open my $fh, '<', $cfgfile
|
||||||
|
or croak "Cannot open '$cfgfile': $ERRNO";
|
||||||
my @lines = <$fh>;
|
my @lines = <$fh>;
|
||||||
close $fh or carp "Cannot close 'WgetFeature.cfg': $ERRNO";
|
close $fh or carp "Cannot close '$cfgfile': $ERRNO";
|
||||||
eval {
|
my $evalstr = join q{}, @lines;
|
||||||
@lines;
|
eval { $evalstr } or carp "Cannot eval '$cfgfile': $ERRNO";
|
||||||
1;
|
|
||||||
} or carp "Cannot eval 'WgetFeature.cfg': $ERRNO";
|
|
||||||
}
|
}
|
||||||
|
|
||||||
sub import
|
sub import
|
||||||
|
Loading…
Reference in New Issue
Block a user