Received: by mail.netbsd.org (Postfix, from userid 605) id 82FAB84E5C; Wed, 10 May 2023 09:23:56 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id AFF5C84D91 for ; Wed, 10 May 2023 09:23:55 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id BRrjx54E8uhe for ; Wed, 10 May 2023 09:23:55 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 123AB84CE3 for ; Wed, 10 May 2023 09:23:55 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 0C255FA87; Wed, 10 May 2023 09:23:55 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_168371063522400" MIME-Version: 1.0 Date: Wed, 10 May 2023 09:23:55 +0000 From: "Jonathan Perkin" Subject: CVS commit: pkgsrc/mk/platform To: pkgsrc-changes@NetBSD.org Reply-To: jperkin@netbsd.org X-Mailer: log_accum Message-Id: <20230510092355.0C255FA87@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_168371063522400 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: jperkin Date: Wed May 10 09:23:54 UTC 2023 Modified Files: pkgsrc/mk/platform: Darwin.mk Log Message: mk: Limit Darwin ECHO_N hack to /bin/sh. To generate a diff of this commit: cvs rdiff -u -r1.124 -r1.125 pkgsrc/mk/platform/Darwin.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_168371063522400 Content-Disposition: inline Content-Length: 765 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/mk/platform/Darwin.mk diff -u pkgsrc/mk/platform/Darwin.mk:1.124 pkgsrc/mk/platform/Darwin.mk:1.125 --- pkgsrc/mk/platform/Darwin.mk:1.124 Thu Feb 2 21:24:43 2023 +++ pkgsrc/mk/platform/Darwin.mk Wed May 10 09:23:54 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Darwin.mk,v 1.124 2023/02/02 21:24:43 jklos Exp $ +# $NetBSD: Darwin.mk,v 1.125 2023/05/10 09:23:54 jperkin Exp $ # # Variable definitions for the Darwin operating system. @@ -39,7 +39,7 @@ X11_TYPE?= native CPP= ${CC} -E ${CPP_PRECOMP_FLAGS} .endif # bash invoked as /bin/sh on Leopard and newer does not support echo -n. -.if ${OPSYS_VERSION} >= 100500 +.if ${OPSYS_VERSION} >= 100500 && ${TOOLS_PLATFORM.sh} == "/bin/sh" ECHO_N?= /bin/echo -n .else ECHO_N?= ${ECHO} -n --_----------=_168371063522400--