diff options
author | Francois Perrad <fperrad@gmail.com> | 2018-10-10 08:46:14 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@bootlin.com> | 2018-10-10 09:06:09 +0200 |
commit | 4f7441ab41a6c29075b30fc06c1fc082976b24d1 (patch) | |
tree | fdabbd69ffe523208548d4b216d41a481d512bbc | |
parent | 37e85660b525a63018fec1442b0a5cc263809e4c (diff) | |
download | buildroot-4f7441ab41a6c29075b30fc06c1fc082976b24d1.tar.gz buildroot-4f7441ab41a6c29075b30fc06c1fc082976b24d1.zip |
scancpan: remove run-time dependencies
Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
-rwxr-xr-x | utils/scancpan | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/utils/scancpan b/utils/scancpan index 632e7aa95c..066882c08f 100755 --- a/utils/scancpan +++ b/utils/scancpan @@ -717,8 +717,7 @@ while (my ($distname, $dist) = each %dist) { # 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 = ( map( { q{host-} . fsname( $_ ); } sort @{$deps_build{$distname}} ), - map( { fsname( $_ ); } sort @{$deps_runtime{$distname}} ) ); + my @dependencies = map( { q{host-} . fsname( $_ ); } sort @{$deps_build{$distname}} ); my $dependencies = join qq{ \\\n\t}, @dependencies; $dependencies = qq{\\\n\t} . $dependencies if scalar @dependencies > 1; my @host_dependencies = map { q{host-} . fsname( $_ ); } sort( @{$deps_build{$distname}}, |