Received: by mail.netbsd.org (Postfix, from userid 605) id 8864D84DD0; Fri, 23 Mar 2018 04:31:55 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id A8B0184D9B for ; Fri, 23 Mar 2018 04:31:54 +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 cKAZmgfuHSsJ for ; Fri, 23 Mar 2018 04:31:54 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id CCEC284D2D for ; Fri, 23 Mar 2018 04:31:53 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id BEB9DFB40; Fri, 23 Mar 2018 04:31:53 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_152177951370940" MIME-Version: 1.0 Date: Fri, 23 Mar 2018 04:31:53 +0000 From: =?UTF-8?B?RnLDqWTDqXJpYyBGYXViZXJ0ZWF1?= Subject: CVS commit: pkgsrc/mk/check To: pkgsrc-changes@NetBSD.org Reply-To: triaxx@netbsd.org X-Mailer: log_accum Message-Id: <20180323043153.BEB9DFB40@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_152177951370940 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: triaxx Date: Fri Mar 23 04:31:53 UTC 2018 Modified Files: pkgsrc/mk/check: check-shlibs-elf.awk Log Message: Wrong place to patch readelf To generate a diff of this commit: cvs rdiff -u -r1.16 -r1.17 pkgsrc/mk/check/check-shlibs-elf.awk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_152177951370940 Content-Disposition: inline Content-Length: 986 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/mk/check/check-shlibs-elf.awk diff -u pkgsrc/mk/check/check-shlibs-elf.awk:1.16 pkgsrc/mk/check/check-shlibs-elf.awk:1.17 --- pkgsrc/mk/check/check-shlibs-elf.awk:1.16 Thu Mar 22 09:37:17 2018 +++ pkgsrc/mk/check/check-shlibs-elf.awk Fri Mar 23 04:31:53 2018 @@ -1,4 +1,4 @@ -# $NetBSD: check-shlibs-elf.awk,v 1.16 2018/03/22 09:37:17 triaxx Exp $ +# $NetBSD: check-shlibs-elf.awk,v 1.17 2018/03/23 04:31:53 triaxx Exp $ # # Copyright (c) 2007 Joerg Sonnenberger . # All rights reserved. @@ -102,7 +102,7 @@ function check_pkg(DSO, pkg, found) { } function checkshlib(DSO, needed, rpath, found, dso_rpath, got_rpath, nrpath) { - cmd = "LANG=C" readelf " -Wd " shquote(DSO) " 2> /dev/null" + cmd = readelf " -Wd " shquote(DSO) " 2> /dev/null" while ((cmd | getline) > 0) { if ($2 == "(RPATH)" || $2 == "(RUNPATH)") { sub("^[[:space:]]*0[xX][[:xdigit:]]+[[:space:]]+\\(RU?N?PATH\\)[[:space:]]+Library ru?n?path: \\[", "") --_----------=_152177951370940--