Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id 7C0521A9239 for ; Thu, 3 Mar 2022 07:30:49 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id AA93D84EEB; Thu, 3 Mar 2022 07:30:48 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id E61AE84DBD for ; Thu, 3 Mar 2022 07:30:47 +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 kPLacYb2iVpQ for ; Thu, 3 Mar 2022 07:30:47 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 42A1E84C71 for ; Thu, 3 Mar 2022 07:30:47 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 39793FB24; Thu, 3 Mar 2022 07:30:47 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1646292647108670" MIME-Version: 1.0 Date: Thu, 3 Mar 2022 07:30:47 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/shells/standalone-tcsh To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20220303073047.39793FB24@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1646292647108670 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Thu Mar 3 07:30:47 UTC 2022 Modified Files: pkgsrc/shells/standalone-tcsh: Makefile Log Message: standalone-tcsh: Don't hardcode our own list of archs on which to disable static PIE. To generate a diff of this commit: cvs rdiff -u -r1.40 -r1.41 pkgsrc/shells/standalone-tcsh/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1646292647108670 Content-Disposition: inline Content-Length: 1031 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/shells/standalone-tcsh/Makefile diff -u pkgsrc/shells/standalone-tcsh/Makefile:1.40 pkgsrc/shells/standalone-tcsh/Makefile:1.41 --- pkgsrc/shells/standalone-tcsh/Makefile:1.40 Thu Mar 3 03:33:47 2022 +++ pkgsrc/shells/standalone-tcsh/Makefile Thu Mar 3 07:30:47 2022 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.40 2022/03/03 03:33:47 mrg Exp $ +# $NetBSD: Makefile,v 1.41 2022/03/03 07:30:47 nia Exp $ # # FIXME: This is because of PREFIX=/ below. @@ -16,14 +16,12 @@ DESCR_SRC= ../../shells/tcsh/DESCR DESC # anyone wants. ONLY_FOR_PLATFORM+= NetBSD-*-* OpenBSD-*-* SunOS-*-* -.if "${OPSYS}" == "NetBSD" && \ - (${MACHINE_ARCH} == "aarch64" || ${MACHINE_ARCH} == "aarch64eb" || \ - ${MACHINE_ARCH} == "mipsn64-el" || ${MACHINE_ARCH} == "mipsn64eb") +.include "../../mk/bsd.prefs.mk" + +.if "${OPSYS}" == "NetBSD" && !defined(OPSYS_HAS_STATIC_PIE) MKPIE_SUPPORTED= no .endif -.include "../../mk/bsd.prefs.mk" - .if ${OS_VARIANT} == "OmniOS" NOT_FOR_PLATFORM+= SunOS-*-* .endif --_----------=_1646292647108670--