commit: 795a50c8b29f5433e22b873c1af9cdb07987b079 Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Wed Aug 11 01:31:14 2021 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Wed Aug 11 02:05:15 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=795a50c8
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 <AT> gentoo.org> sys-process/htop/htop-3.0.2-r1.ebuild | 2 +- sys-process/htop/htop-3.0.4-r2.ebuild | 2 +- 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 183f2f04fbc..13b5c03ad25 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 8ce3e79b56e..65e53029fa2 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 61702bf269c..82648c71eff 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)
