mirror of
https://github.com/dkogan/feedgnuplot.git
synced 2025-05-05 22:11:12 +08:00
'any' is from List::MoreUtils, not List::Util
This commit is contained in:
parent
07f574a929
commit
35ed74eaf1
@ -64,6 +64,7 @@ WriteMakefile
|
|||||||
PL_FILES => {},
|
PL_FILES => {},
|
||||||
EXE_FILES => [ 'bin/feedgnuplot' ],
|
EXE_FILES => [ 'bin/feedgnuplot' ],
|
||||||
BUILD_REQUIRES => { 'String::ShellQuote' => 0,
|
BUILD_REQUIRES => { 'String::ShellQuote' => 0,
|
||||||
|
'List::MoreUtils' => 0,
|
||||||
'IPC::Run' => 0},
|
'IPC::Run' => 0},
|
||||||
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
|
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
|
||||||
clean => { FILES => 'feedgnuplot-*' },
|
clean => { FILES => 'feedgnuplot-*' },
|
||||||
|
@ -8,7 +8,8 @@ use Getopt::Long;
|
|||||||
use Time::HiRes qw( usleep gettimeofday tv_interval );
|
use Time::HiRes qw( usleep gettimeofday tv_interval );
|
||||||
use IO::Handle;
|
use IO::Handle;
|
||||||
use IO::Select;
|
use IO::Select;
|
||||||
use List::Util qw( first any );
|
use List::Util qw( first );
|
||||||
|
use List::MoreUtils 'any';
|
||||||
use Scalar::Util qw( looks_like_number );
|
use Scalar::Util qw( looks_like_number );
|
||||||
use Text::ParseWords; # for shellwords
|
use Text::ParseWords; # for shellwords
|
||||||
use Pod::Usage;
|
use Pod::Usage;
|
||||||
|
Loading…
Reference in New Issue
Block a user