diff options
author | Sam James <sam@gentoo.org> | 2021-08-11 02:31:14 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-08-11 03:05:15 +0100 |
commit | 795a50c8b29f5433e22b873c1af9cdb07987b079 (patch) | |
tree | d050cc333d7778226dafbc16bfd2eedfb1879605 /sys-process | |
parent | net-im/dino: [QA] use test USE flag to control building, not FEATURES (diff) | |
download | gentoo-795a50c8b29f5433e22b873c1af9cdb07987b079.tar.gz gentoo-795a50c8b29f5433e22b873c1af9cdb07987b079.tar.bz2 gentoo-795a50c8b29f5433e22b873c1af9cdb07987b079.zip |
sys-process/htop: [QA] fix named variable style
See https://projects.gentoo.org/qa/policy-guide/ebuild-format.html#pg0101.
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'sys-process')
-rw-r--r-- | sys-process/htop/htop-3.0.2-r1.ebuild | 2 | ||||
-rw-r--r-- | sys-process/htop/htop-3.0.4-r2.ebuild | 2 | ||||
-rw-r--r-- | sys-process/htop/htop-3.0.5-r1.ebuild | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/sys-process/htop/htop-3.0.2-r1.ebuild b/sys-process/htop/htop-3.0.2-r1.ebuild index 183f2f04fbcf..13b5c03ad252 100644 --- a/sys-process/htop/htop-3.0.2-r1.ebuild +++ b/sys-process/htop/htop-3.0.2-r1.ebuild @@ -46,7 +46,7 @@ src_prepare() { } src_configure() { - [[ $CBUILD != $CHOST ]] && export ac_cv_file__proc_{meminfo,stat}=yes #328971 + [[ ${CBUILD} != ${CHOST} ]] && export ac_cv_file__proc_{meminfo,stat}=yes #328971 local myeconfargs=( # fails to build against recent hwloc versions diff --git a/sys-process/htop/htop-3.0.4-r2.ebuild b/sys-process/htop/htop-3.0.4-r2.ebuild index 8ce3e79b56e9..65e53029fa21 100644 --- a/sys-process/htop/htop-3.0.4-r2.ebuild +++ b/sys-process/htop/htop-3.0.4-r2.ebuild @@ -50,7 +50,7 @@ src_prepare() { } src_configure() { - [[ $CBUILD != $CHOST ]] && export ac_cv_file__proc_{meminfo,stat}=yes #328971 + [[ ${CBUILD} != ${CHOST} ]] && export ac_cv_file__proc_{meminfo,stat}=yes #328971 local myeconfargs=( $(use_enable debug) diff --git a/sys-process/htop/htop-3.0.5-r1.ebuild b/sys-process/htop/htop-3.0.5-r1.ebuild index 61702bf269c8..82648c71eff3 100644 --- a/sys-process/htop/htop-3.0.5-r1.ebuild +++ b/sys-process/htop/htop-3.0.5-r1.ebuild @@ -46,7 +46,7 @@ src_prepare() { } src_configure() { - [[ $CBUILD != $CHOST ]] && export ac_cv_file__proc_{meminfo,stat}=yes #328971 + [[ ${CBUILD} != ${CHOST} ]] && export ac_cv_file__proc_{meminfo,stat}=yes #328971 local myeconfargs=( $(use_enable debug) |