From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id D2DB313835C for ; Thu, 29 Apr 2021 01:52:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DD6B9E086F; Thu, 29 Apr 2021 01:52:43 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A09E3E0870 for ; Thu, 29 Apr 2021 01:52:43 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id CBAE1341043 for ; Thu, 29 Apr 2021 01:52:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 47EF174A for ; Thu, 29 Apr 2021 01:52:40 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1619661122.fe3bd7025617c5abe102d0c11665002b4cbd4616.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/apr/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/apr/apr-1.6.3-r4.ebuild dev-libs/apr/apr-1.6.5-r1.ebuild dev-libs/apr/apr-1.7.0-r1.ebuild X-VCS-Directories: dev-libs/apr/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: fe3bd7025617c5abe102d0c11665002b4cbd4616 X-VCS-Branch: master Date: Thu, 29 Apr 2021 01:52:40 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 858728e4-ca01-49ba-a668-5e5e1f6d6142 X-Archives-Hash: 4f0599ba28783eedf473daddb35c2ce2 commit: fe3bd7025617c5abe102d0c11665002b4cbd4616 Author: Sam James gentoo org> AuthorDate: Thu Apr 29 01:44:47 2021 +0000 Commit: Sam James gentoo org> CommitDate: Thu Apr 29 01:52:02 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe3bd702 dev-libs/apr: fix variable reference style Package-Manager: Portage-3.0.18-prefix, Repoman-3.0.3 Signed-off-by: Sam James gentoo.org> dev-libs/apr/apr-1.6.3-r4.ebuild | 2 +- dev-libs/apr/apr-1.6.5-r1.ebuild | 2 +- dev-libs/apr/apr-1.7.0-r1.ebuild | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dev-libs/apr/apr-1.6.3-r4.ebuild b/dev-libs/apr/apr-1.6.3-r4.ebuild index ab6c44d8052..ce047e457b5 100644 --- a/dev-libs/apr/apr-1.6.3-r4.ebuild +++ b/dev-libs/apr/apr-1.6.3-r4.ebuild @@ -88,7 +88,7 @@ src_configure() { if use urandom; then myconf+=( --with-devrandom=/dev/urandom ) elif (( ${CHOST#*-hpux11.} <= 11 )); then - : # no /dev/*random on hpux11.11 and before, $PN detects this. + : # no /dev/*random on hpux11.11 and before, ${PN} detects this. else myconf+=( --with-devrandom=/dev/random ) fi diff --git a/dev-libs/apr/apr-1.6.5-r1.ebuild b/dev-libs/apr/apr-1.6.5-r1.ebuild index 6c6e45c005e..2e6c0d4627e 100644 --- a/dev-libs/apr/apr-1.6.5-r1.ebuild +++ b/dev-libs/apr/apr-1.6.5-r1.ebuild @@ -87,7 +87,7 @@ src_configure() { if use urandom; then myconf+=( --with-devrandom=/dev/urandom ) elif (( ${CHOST#*-hpux11.} <= 11 )); then - : # no /dev/*random on hpux11.11 and before, $PN detects this. + : # no /dev/*random on hpux11.11 and before, ${PN} detects this. else myconf+=( --with-devrandom=/dev/random ) fi diff --git a/dev-libs/apr/apr-1.7.0-r1.ebuild b/dev-libs/apr/apr-1.7.0-r1.ebuild index 59a34b5aa71..ec551265391 100644 --- a/dev-libs/apr/apr-1.7.0-r1.ebuild +++ b/dev-libs/apr/apr-1.7.0-r1.ebuild @@ -88,7 +88,7 @@ src_configure() { if use urandom; then myconf+=( --with-devrandom=/dev/urandom ) elif (( ${CHOST#*-hpux11.} <= 11 )); then - : # no /dev/*random on hpux11.11 and before, $PN detects this. + : # no /dev/*random on hpux11.11 and before, ${PN} detects this. else myconf+=( --with-devrandom=/dev/random ) fi