summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2021-04-02 10:41:06 +0100
committerSam James <sam@gentoo.org>2021-04-03 16:42:55 +0100
commitb9097b80d52837ae486b7ae3b9e213df58f66217 (patch)
treeabed2aea7216ad50bd6391c1b3b325e1ab486d73 /app-admin/rex
parentapp-admin/amazon-ec2-init: fix variable references (diff)
downloadgentoo-b9097b80d52837ae486b7ae3b9e213df58f66217.tar.gz
gentoo-b9097b80d52837ae486b7ae3b9e213df58f66217.tar.bz2
gentoo-b9097b80d52837ae486b7ae3b9e213df58f66217.zip
app-admin/rex: fix variable references
Package-Manager: Portage-3.0.14-prefix, Repoman-3.0.2 Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'app-admin/rex')
-rw-r--r--app-admin/rex/rex-1.13.3.ebuild2
-rw-r--r--app-admin/rex/rex-9999.ebuild2
2 files changed, 2 insertions, 2 deletions
diff --git a/app-admin/rex/rex-1.13.3.ebuild b/app-admin/rex/rex-1.13.3.ebuild
index 9576447c0078..4da9ff74e481 100644
--- a/app-admin/rex/rex-1.13.3.ebuild
+++ b/app-admin/rex/rex-1.13.3.ebuild
@@ -103,7 +103,7 @@ BDEPEND="
[[ ${PV} == 9999 ]] && BDEPEND+=" ${DZIL_DEPENDS}"
src_unpack() {
- if [[ $PV == 9999 ]]; then
+ if [[ ${PV} == 9999 ]]; then
"${VCS_ECLASS}"_src_unpack
mkdir -p "${S}" || die "Can't make ${S}"
else
diff --git a/app-admin/rex/rex-9999.ebuild b/app-admin/rex/rex-9999.ebuild
index 9576447c0078..4da9ff74e481 100644
--- a/app-admin/rex/rex-9999.ebuild
+++ b/app-admin/rex/rex-9999.ebuild
@@ -103,7 +103,7 @@ BDEPEND="
[[ ${PV} == 9999 ]] && BDEPEND+=" ${DZIL_DEPENDS}"
src_unpack() {
- if [[ $PV == 9999 ]]; then
+ if [[ ${PV} == 9999 ]]; then
"${VCS_ECLASS}"_src_unpack
mkdir -p "${S}" || die "Can't make ${S}"
else