commit: fe3bd7025617c5abe102d0c11665002b4cbd4616
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 29 01:44:47 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> 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 <sam <AT> 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