mirror of
https://github.com/dkogan/feedgnuplot.git
synced 2025-05-05 14:04:49 +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 => {},
|
||||
EXE_FILES => [ 'bin/feedgnuplot' ],
|
||||
BUILD_REQUIRES => { 'String::ShellQuote' => 0,
|
||||
'List::MoreUtils' => 0,
|
||||
'IPC::Run' => 0},
|
||||
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
|
||||
clean => { FILES => 'feedgnuplot-*' },
|
||||
|
@ -8,7 +8,8 @@ use Getopt::Long;
|
||||
use Time::HiRes qw( usleep gettimeofday tv_interval );
|
||||
use IO::Handle;
|
||||
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 Text::ParseWords; # for shellwords
|
||||
use Pod::Usage;
|
||||
|
Loading…
Reference in New Issue
Block a user