Received: from malur.postgresql.org ([217.196.149.56]) by arkaria.postgresql.org with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1n9qlV-0008GA-09 for pgsql-hackers@arkaria.postgresql.org; Tue, 18 Jan 2022 15:51:21 +0000 Received: from localhost ([127.0.0.1] helo=malur.postgresql.org) by malur.postgresql.org with esmtp (Exim 4.92) (envelope-from ) id 1n9qlT-0006n0-S1 for pgsql-hackers@arkaria.postgresql.org; Tue, 18 Jan 2022 15:51:19 +0000 Received: from makus.postgresql.org ([2001:4800:3e1:1::229]) by malur.postgresql.org with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1n9qlT-0006mr-Iq for pgsql-hackers@lists.postgresql.org; Tue, 18 Jan 2022 15:51:19 +0000 Received: from smtp.outgoing.loopia.se ([93.188.3.37]) by makus.postgresql.org with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1n9qlQ-0003ST-Bl for pgsql-hackers@lists.postgresql.org; Tue, 18 Jan 2022 15:51:18 +0000 Received: from s807.loopia.se (localhost [127.0.0.1]) by s807.loopia.se (Postfix) with ESMTP id A614A2EDEDF3 for ; Tue, 18 Jan 2022 16:51:12 +0100 (CET) Received: from s499.loopia.se (unknown [172.22.191.5]) by s807.loopia.se (Postfix) with ESMTP id 96FB92E2ABCD; Tue, 18 Jan 2022 16:51:12 +0100 (CET) Received: from s473.loopia.se (unknown [172.22.191.6]) by s499.loopia.se (Postfix) with ESMTP id 896061CE2573; Tue, 18 Jan 2022 16:51:12 +0100 (CET) X-Virus-Scanned: amavisd-new at amavis.loopia.se X-Spam-Flag: NO X-Spam-Score: -1 X-Spam-Level: X-Spam-Status: No, score=-1 tagged_above=-999 required=6.2 tests=[ALL_TRUSTED=-1] autolearn=disabled Received: from s499.loopia.se ([172.22.191.6]) by s473.loopia.se (s473.loopia.se [172.22.190.13]) (amavisd-new, port 10024) with LMTP id dmAYMT5aIR46; Tue, 18 Jan 2022 16:51:10 +0100 (CET) X-Loopia-Auth: user X-Loopia-User: daniel@yesql.se X-Loopia-Originating-IP: 89.255.232.193 Received: from [192.168.72.144] (customer-89-255-232-193.stosn.net [89.255.232.193]) (Authenticated sender: daniel@yesql.se) by s499.loopia.se (Postfix) with ESMTPSA id 098E41CE253D; Tue, 18 Jan 2022 16:51:10 +0100 (CET) From: Daniel Gustafsson Message-Id: <20CFEB28-9CF8-4AD8-BB7F-0E8A9EDA8BA7@yesql.se> Content-Type: multipart/mixed; boundary="Apple-Mail=_72C09ADB-58A9-4DD7-9952-63CD468CA792" Mime-Version: 1.0 (Mac OS X Mail 13.4 \(3608.120.23.2.7\)) Subject: Re: New developer papercut - Makefile references INSTALL Date: Tue, 18 Jan 2022 16:51:09 +0100 In-Reply-To: <4EE5D9D9-AE71-4830-8DEE-01E91565244B@yesql.se> Cc: Tim McNamara , PostgreSQL Hackers To: Magnus Hagander References: <730dae39-abaa-4140-893b-95d732fed003@www.fastmail.com> <4EE5D9D9-AE71-4830-8DEE-01E91565244B@yesql.se> X-Mailer: Apple Mail (2.3608.120.23.2.7) List-Id: List-Help: List-Subscribe: List-Post: List-Owner: List-Archive: Archived-At: Precedence: bulk --Apple-Mail=_72C09ADB-58A9-4DD7-9952-63CD468CA792 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=us-ascii > On 17 Jan 2022, at 13:26, Daniel Gustafsson wrote: > >> On 17 Jan 2022, at 11:25, Magnus Hagander wrote: > >> That said, I'm not sure we're actually gaining anything by *not* >> referring to the website as well. TBH, I bet the majority of users >> will actually prefer to read them there. So I'd suggest always >> including the reference to the website as well, per the suggestion >> from Tim. > > Fair point, I'll go ahead and do that in a bit unless anyone objects. I plan on applying the attached which address the feedback given. -- Daniel Gustafsson https://vmware.com/ --Apple-Mail=_72C09ADB-58A9-4DD7-9952-63CD468CA792 Content-Disposition: attachment; filename=install_v2.diff Content-Type: application/octet-stream; x-unix-mode=0644; name="install_v2.diff" Content-Transfer-Encoding: 7bit diff --git a/Makefile b/Makefile index 99dcfff654..97b9f2bcbc 100644 --- a/Makefile +++ b/Makefile @@ -17,8 +17,14 @@ all: all check install installdirs installcheck installcheck-parallel uninstall clean distclean maintainer-clean dist distcheck world check-world install-world installcheck-world: @if [ ! -f GNUmakefile ] ; then \ + if [ -f INSTALL ] ; then \ + INSTRUCTIONS="'INSTALL'"; \ + else \ + INSTRUCTIONS="'README.git'"; \ + fi; \ echo "You need to run the 'configure' program first. See the file"; \ - echo "'INSTALL' for installation instructions." ; \ + echo "$$INSTRUCTIONS for installation instructions, or visit: " ; \ + echo "" ; \ false ; \ fi @IFS=':' ; \ --Apple-Mail=_72C09ADB-58A9-4DD7-9952-63CD468CA792--