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=-3.9 required=3.0 tests=ALL_TRUSTED,AWL,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 AF0701F4BD for ; Tue, 8 Oct 2019 02:41:22 +0000 (UTC) From: Eric Wong To: meta@public-inbox.org Subject: [PATCH] INSTALL: note that we prefer GNU make Date: Tue, 8 Oct 2019 02:41:22 +0000 Message-Id: <20191008024122.13606-1-e@80x24.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: ExtUtils::MakeMaker uses non-POSIX '::', at least; and our own Documentation/include.mk and our postamble are written for GNU make. GNU make is also more widely-installed and available than any other make; even if I'm not generally a fan of GNU-isms. --- INSTALL | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/INSTALL b/INSTALL index a661c776..f7e5999e 100644 --- a/INSTALL +++ b/INSTALL @@ -182,7 +182,7 @@ Once the dependencies are installed, you should be able to build and install the system (into /usr/local) with: perl Makefile.PL - make + make # GNU make is preferred, `gmake' on BSD systems make test make install # root permissions may be needed -- EW