diff options
author | David Seifert <soap@gentoo.org> | 2024-10-08 17:31:51 +0200 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2024-10-08 17:31:51 +0200 |
commit | ec9bd064a3b2e495970f49d751d57ca62fa77b84 (patch) | |
tree | 0a1a294097c36a0874a30275e2d199a4259e0741 /eclass/waf-utils.eclass | |
parent | xdg.eclass: drop support for EAPI 6 (diff) | |
download | gentoo-ec9bd064a3b2e495970f49d751d57ca62fa77b84.tar.gz gentoo-ec9bd064a3b2e495970f49d751d57ca62fa77b84.tar.bz2 gentoo-ec9bd064a3b2e495970f49d751d57ca62fa77b84.zip |
eclass: standardize inherit guard
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'eclass/waf-utils.eclass')
-rw-r--r-- | eclass/waf-utils.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/waf-utils.eclass b/eclass/waf-utils.eclass index f8d4b0aa94b4..377b455de736 100644 --- a/eclass/waf-utils.eclass +++ b/eclass/waf-utils.eclass @@ -1,4 +1,4 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # @ECLASS: waf-utils.eclass @@ -20,7 +20,7 @@ case ${EAPI} in *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; esac -if [[ ! ${_WAF_UTILS_ECLASS} ]]; then +if [[ -z ${_WAF_UTILS_ECLASS} ]]; then _WAF_UTILS_ECLASS=1 inherit multilib toolchain-funcs multiprocessing |