From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-4.0 required=3.0 tests=ALL_TRUSTED,BAYES_00 shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 015511F8C8 for ; Tue, 5 Oct 2021 21:13:50 +0000 (UTC) From: Eric Wong To: mwrap-perl@80x24.org Subject: [PATCH] Makefile.PL: use META_MERGE for repository resources properly Date: Tue, 5 Oct 2021 21:13:49 +0000 Message-Id: <20211005211349.2030-1-e@80x24.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: --- Makefile.PL | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/Makefile.PL b/Makefile.PL index 1666f09..c3caf6c 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -49,10 +49,12 @@ push @writemakefile_args, ( depend => { Makefile => 'lib/Devel/Mwrap.pm', }, - resources => { - repository => 'https://80x24.org/mwrap-perl.git', - homepage => 'https://80x24.org/mwrap-perl.git/about', - bugtracker => 'https://80x24.org/mwrap-public/', + META_MERGE => { + resources => { + repository => 'https://80x24.org/mwrap-perl.git', + homepage => 'https://80x24.org/mwrap-perl.git/about', + bugtracker => 'https://80x24.org/mwrap-public/', + }, }, );