Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/apr/
Date: Thu, 29 Apr 2021 01:52:44
Message-Id: 1619661122.fe3bd7025617c5abe102d0c11665002b4cbd4616.sam@gentoo
1 commit: fe3bd7025617c5abe102d0c11665002b4cbd4616
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Thu Apr 29 01:44:47 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Thu Apr 29 01:52:02 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe3bd702
7
8 dev-libs/apr: fix variable reference style
9
10 Package-Manager: Portage-3.0.18-prefix, Repoman-3.0.3
11 Signed-off-by: Sam James <sam <AT> gentoo.org>
12
13 dev-libs/apr/apr-1.6.3-r4.ebuild | 2 +-
14 dev-libs/apr/apr-1.6.5-r1.ebuild | 2 +-
15 dev-libs/apr/apr-1.7.0-r1.ebuild | 2 +-
16 3 files changed, 3 insertions(+), 3 deletions(-)
17
18 diff --git a/dev-libs/apr/apr-1.6.3-r4.ebuild b/dev-libs/apr/apr-1.6.3-r4.ebuild
19 index ab6c44d8052..ce047e457b5 100644
20 --- a/dev-libs/apr/apr-1.6.3-r4.ebuild
21 +++ b/dev-libs/apr/apr-1.6.3-r4.ebuild
22 @@ -88,7 +88,7 @@ src_configure() {
23 if use urandom; then
24 myconf+=( --with-devrandom=/dev/urandom )
25 elif (( ${CHOST#*-hpux11.} <= 11 )); then
26 - : # no /dev/*random on hpux11.11 and before, $PN detects this.
27 + : # no /dev/*random on hpux11.11 and before, ${PN} detects this.
28 else
29 myconf+=( --with-devrandom=/dev/random )
30 fi
31
32 diff --git a/dev-libs/apr/apr-1.6.5-r1.ebuild b/dev-libs/apr/apr-1.6.5-r1.ebuild
33 index 6c6e45c005e..2e6c0d4627e 100644
34 --- a/dev-libs/apr/apr-1.6.5-r1.ebuild
35 +++ b/dev-libs/apr/apr-1.6.5-r1.ebuild
36 @@ -87,7 +87,7 @@ src_configure() {
37 if use urandom; then
38 myconf+=( --with-devrandom=/dev/urandom )
39 elif (( ${CHOST#*-hpux11.} <= 11 )); then
40 - : # no /dev/*random on hpux11.11 and before, $PN detects this.
41 + : # no /dev/*random on hpux11.11 and before, ${PN} detects this.
42 else
43 myconf+=( --with-devrandom=/dev/random )
44 fi
45
46 diff --git a/dev-libs/apr/apr-1.7.0-r1.ebuild b/dev-libs/apr/apr-1.7.0-r1.ebuild
47 index 59a34b5aa71..ec551265391 100644
48 --- a/dev-libs/apr/apr-1.7.0-r1.ebuild
49 +++ b/dev-libs/apr/apr-1.7.0-r1.ebuild
50 @@ -88,7 +88,7 @@ src_configure() {
51 if use urandom; then
52 myconf+=( --with-devrandom=/dev/urandom )
53 elif (( ${CHOST#*-hpux11.} <= 11 )); then
54 - : # no /dev/*random on hpux11.11 and before, $PN detects this.
55 + : # no /dev/*random on hpux11.11 and before, ${PN} detects this.
56 else
57 myconf+=( --with-devrandom=/dev/random )
58 fi