From dccac95b3a3eb12d4ec9e5dac402848f254f4770 Mon Sep 17 00:00:00 2001 From: Guillem Jover Date: Thu, 7 Mar 2019 17:46:43 +0100 Subject: [PATCH] TT#53701 Demote NGCP::Panel to a recommends in Build.PL For the same reason we demoted the Debian dependency from a Depends to a Recommends, because the NGCP::API do not necessarily need an ngcp-panel instance running on the same host, we match the perl module metadata. Change-Id: I43fe985c34db1e3206b607648028389ad0b93c09 --- Build.PL | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Build.PL b/Build.PL index f98a747..ce30bc0 100644 --- a/Build.PL +++ b/Build.PL @@ -9,8 +9,10 @@ my $builder = Module::Build->new( 'IO::Socket::SSL' => 0, 'JSON' => 0, 'LWP::UserAgent' => 0, - 'NGCP::Panel' => 0.01, 'Readonly' => 0, }, + recommends => { + 'NGCP::Panel' => 0, + }, ); $builder->create_build_script;