diff options
author | Christopher McCrory <chrismcc@gmail.com> | 2018-08-20 04:16:22 -0700 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@bootlin.com> | 2018-09-21 00:02:11 +0200 |
commit | e9963cd2b51f2f5d64c576ad2f2188a644627be3 (patch) | |
tree | 6fc7eab882f0fdd6e2d15bbd5f60fc9b5c5ecde3 | |
parent | b8d768b247db4359bcbc8e4bfdea23763ee52230 (diff) | |
download | buildroot-e9963cd2b51f2f5d64c576ad2f2188a644627be3.tar.gz buildroot-e9963cd2b51f2f5d64c576ad2f2188a644627be3.zip |
scancpan: skip Dist::Zilla
Signed-off-by: Christopher McCrory <chrismcc@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
-rwxr-xr-x | utils/scancpan | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/utils/scancpan b/utils/scancpan index 3b77b21330..ee547c3e7b 100755 --- a/utils/scancpan +++ b/utils/scancpan @@ -601,6 +601,7 @@ sub fetch { # we could use the host Module::CoreList data, because host perl and # target perl have the same major version next if ${$dep}{phase} eq q{develop}; + next if ${$dep}{phase} eq q{x_Dist_Zilla}; next if !($test && $top) && ${$dep}{phase} eq q{test}; my $distname = $mcpan->module( $modname )->{distribution}; if (${$dep}{phase} eq q{runtime}) { |