From 56e7d0b886de1c6b2abe2da93f2bc19359a9316f Mon Sep 17 00:00:00 2001 From: Francois Perrad Date: Fri, 29 Aug 2014 10:51:53 +0200 Subject: [PATCH] support/script/scancpan: don't generate the trailing slash in _SITE variable The trailing slash was removed in all packages, so don't generate it. See http://git.buildroot.net/buildroot/commit/?id=c7f4b964718bc5a3329bb730f59e24091ecbc7a2 Signed-off-by: Francois Perrad Signed-off-by: Peter Korsgaard --- support/scripts/scancpan | 1 + 1 file changed, 1 insertion(+) 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}} ); -- 2.30.2