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 C557E1A9239 for ; Mon, 1 Feb 2021 16:03:51 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id C90A984D9C; Mon, 1 Feb 2021 16:03:50 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 0E14C84D9B for ; Mon, 1 Feb 2021 16:03:50 +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 M5RPb3TjT4bI for ; Mon, 1 Feb 2021 16:03:49 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 5BDC584CD8 for ; Mon, 1 Feb 2021 16:03:49 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 50229FA91; Mon, 1 Feb 2021 16:03:49 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1612195429235830" MIME-Version: 1.0 Date: Mon, 1 Feb 2021 16:03:49 +0000 From: "Travis Paul" Subject: CVS commit: pkgsrc/mk/check To: pkgsrc-changes@NetBSD.org Reply-To: tpaul@netbsd.org X-Mailer: log_accum Message-Id: <20210201160349.50229FA91@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1612195429235830 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: tpaul Date: Mon Feb 1 16:03:49 UTC 2021 Modified Files: pkgsrc/mk/check: check-relro.mk Log Message: mk: Use "_PKGSRC_USE_RELRO" instead of "PKGSRC_USE_RELRO" This variable appears to be incorrect as "_PKGSRC_USE_RELRO" is set in bsd.prefs.mk. This was causing RELRO_SUPPORTED=no to not function as intended in lang/go/go-vars.mk ok'd by jperkin To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 pkgsrc/mk/check/check-relro.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1612195429235830 Content-Disposition: inline Content-Length: 787 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/mk/check/check-relro.mk diff -u pkgsrc/mk/check/check-relro.mk:1.4 pkgsrc/mk/check/check-relro.mk:1.5 --- pkgsrc/mk/check/check-relro.mk:1.4 Mon Mar 23 09:24:35 2020 +++ pkgsrc/mk/check/check-relro.mk Mon Feb 1 16:03:49 2021 @@ -1,4 +1,4 @@ -# $NetBSD: check-relro.mk,v 1.4 2020/03/23 09:24:35 jperkin Exp $ +# $NetBSD: check-relro.mk,v 1.5 2021/02/01 16:03:49 tpaul Exp $ # # This file verifies that RELRO (read-only relocations) was applied # accordingly at build-time. @@ -29,7 +29,7 @@ _VARGROUPS+= check-relro _USER_VARS.check-relro= CHECK_RELRO _PKG_VARS.check-relro= CHECK_RELRO_SUPPORTED -.if ${PKGSRC_USE_RELRO:Uno} != "no" && \ +.if ${_PKGSRC_USE_RELRO:Uno} != "no" && \ ${PKG_DEVELOPER:Uno} != "no" CHECK_RELRO?= yes .else --_----------=_1612195429235830--