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 A8C8A1F45A for ; Fri, 17 Apr 2020 23:17:07 +0000 (UTC) From: Eric Wong To: mwrap-perl@yhbt.net Subject: [PATCH] Makefile.PL: use "prove -b" instead of PERL5LIB env Date: Fri, 17 Apr 2020 23:17:07 +0000 Message-Id: <20200417231707.31012-1-mwrap-perl@yhbt.net> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: I only recently learned of "-b", despite it being in prove(1) since the early days. --- Makefile.PL | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.PL b/Makefile.PL index a7d131d..274cf60 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -60,6 +60,6 @@ check-manifest :: MANIFEST if git ls-files >\$?.gen 2>&1; then diff -u \$? \$?.gen; fi check:: all check-manifest - PERL5LIB=blib/lib:blib/arch prove -vw -j\$(N) + prove -bvw -j\$(N) EOF }