X-Git-Url: http://git.jankratochvil.net/?p=macros.git;a=blobdiff_plain;f=AutoGen.pm;h=4bbb8fd142dd9e7360a00a174af2e1685d77ad7e;hp=a7f223f1398ad725d717823bb166423b685b198e;hb=df3336d8450e4fb390c525b995377cf21448a8c3;hpb=110202fa95e7c89bb49a271f706a3b7a175398a8 diff --git a/AutoGen.pm b/AutoGen.pm index a7f223f..4bbb8fd 100644 --- a/AutoGen.pm +++ b/AutoGen.pm @@ -38,8 +38,9 @@ BEGIN { use File::chdir; # $CWD use File::Touch; # &touch use POSIX qw(WIFEXITED WEXITSTATUS WIFSIGNALED WTERMSIG WIFSTOPPED WSTOPSIG); + use File::Glob qw(:glob); # &bsd_glob, &GLOB_* HERE - eval "$_\n; 1;" or push @missing,(/^\s*use\s+([^\s;]+)/)[0]; + eval "$_\n; 1;" or push @missing,(/^\s*use\s+([^ ;]+)/)[0]; } die "You are missing some modules - install them by:\n" ."\tperl -MCPAN -e 'install qw(".join(" ",@missing).")'\n" @@ -120,6 +121,9 @@ my(@files)=@_; my $nocheck=shift @files if $files[0] eq "nocheck"; my $dest=pop @files; + # expand pattern to properly match © resulting filenames count + @files=map({ bsd_glob $_,&GLOB_ERR|&GLOB_NOSORT; } @files); + confess "$!" if $File::Glob::GLOB_ERROR; @files==copy @files,$dest or $nocheck or confess "$!"; } @@ -130,6 +134,9 @@ my(@files)=@_; my $nocheck=shift @files if $files[0] eq "nocheck"; my $flag=shift @files if ref $files[0]; + # expand pattern to properly match © resulting filenames count + @files=map({ bsd_glob $_,&GLOB_ERR|&GLOB_NOSORT; } @files); + confess "$!" if $File::Glob::GLOB_ERROR; @files==remove((!$flag ? () : $flag),@files) or $nocheck or confess "$!"; } @@ -333,8 +340,10 @@ sub _expandclass my($patt)=@_; return $patt if $patt!~/\Q[\E(.*?)\Q]\E/; - my($pre,$post)=($`,$'); # FIXME: local($`,$') doesn't work - why? - return map({ _expandclass("$pre$_$post"); } split("",$1)); + my($pre,$range,$post)=($`,$1,$'); # FIXME: local($`,$1,$') doesn't work - why? + 1 while $range=~s#(.)-(.)# join("",map(chr,(ord($1)..ord($2)))); + #ge; + return map({ _expandclass("$pre$_$post"); } split("",$range)); } sub run