From mboxrd@z Thu Jan 1 00:00:00 1970 From: Christopher McCrory Date: Mon, 20 Aug 2018 04:16:22 -0700 Subject: [Buildroot] [PATCH 2/3] scancpan: skip Dist::Zilla In-Reply-To: <20180820111623.23173-1-chrismcc@gmail.com> References: <20180820111623.23173-1-chrismcc@gmail.com> Message-ID: <20180820111623.23173-3-chrismcc@gmail.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: buildroot@busybox.net Signed-off-by: Christopher McCrory --- utils/scancpan | 1 + 1 file changed, 1 insertion(+) diff --git a/utils/scancpan b/utils/scancpan index 6c90588ed4..c83730fa13 100755 --- a/utils/scancpan +++ b/utils/scancpan @@ -603,6 +603,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}) { -- 2.14.4