diff options
Diffstat (limited to 'support/scripts')
-rwxr-xr-x | support/scripts/scancpan | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/support/scripts/scancpan b/support/scripts/scancpan index 50d9bab601..e738a8378f 100755 --- a/support/scripts/scancpan +++ b/support/scripts/scancpan @@ -636,6 +636,7 @@ while (my ($distname, $dist) = each %dist) { # the scheme is not used, because the job is done by the BR download infrastructure # the auth part is not used, because we use $(BR2_CPAN_MIRROR) my($filename, $directories, $suffix) = fileparse( $path, q{tar.gz}, q{tgz} ); + $directories =~ s|/$||; my $dependencies = join q{ }, qw( = perl ), map( { q{host-} . fsname( $_ ); } sort @{$deps_build{$distname}} ), map( { fsname( $_ ); } sort @{$deps_runtime{$distname}} ); |