diff options
author | Sam James <sam@gentoo.org> | 2021-06-10 22:16:41 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-06-10 22:16:41 +0000 |
commit | 1eab0d29d136a1da30520f93c725ea9759d18fb7 (patch) | |
tree | 7424b8bc9eccf4e44088ff2979cf656ad8858a5b /app-i18n | |
parent | app-editors/pluma: fix VariableScope (EROOT) (diff) | |
download | gentoo-1eab0d29d136a1da30520f93c725ea9759d18fb7.tar.gz gentoo-1eab0d29d136a1da30520f93c725ea9759d18fb7.tar.bz2 gentoo-1eab0d29d136a1da30520f93c725ea9759d18fb7.zip |
app-i18n/ibus-chewing: fix VariableScope (EROOT)
Let's use ${EPREFIX} for now as we're on EAPI 6.
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'app-i18n')
-rw-r--r-- | app-i18n/ibus-chewing/ibus-chewing-1.5.1-r1.ebuild | 4 | ||||
-rw-r--r-- | app-i18n/ibus-chewing/ibus-chewing-1.6.1.ebuild | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/app-i18n/ibus-chewing/ibus-chewing-1.5.1-r1.ebuild b/app-i18n/ibus-chewing/ibus-chewing-1.5.1-r1.ebuild index 6e551a4ca242..c1924f9c8119 100644 --- a/app-i18n/ibus-chewing/ibus-chewing-1.5.1-r1.ebuild +++ b/app-i18n/ibus-chewing/ibus-chewing-1.5.1-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI="6" @@ -43,7 +43,7 @@ src_configure() { } src_test() { - "${EROOT}"${GLIB_COMPILE_SCHEMAS} --allow-any-name "${BUILD_DIR}"/bin || die + "${EPREFIX%/}/"${GLIB_COMPILE_SCHEMAS} --allow-any-name "${BUILD_DIR}"/bin || die export GSETTINGS_BACKEND="memory" export GSETTINGS_SCHEMA_DIR="${BUILD_DIR}/bin" diff --git a/app-i18n/ibus-chewing/ibus-chewing-1.6.1.ebuild b/app-i18n/ibus-chewing/ibus-chewing-1.6.1.ebuild index ea2e88eaa3f6..94525afb3ed4 100644 --- a/app-i18n/ibus-chewing/ibus-chewing-1.6.1.ebuild +++ b/app-i18n/ibus-chewing/ibus-chewing-1.6.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI="6" @@ -41,7 +41,7 @@ src_configure() { } src_test() { - "${EROOT}"${GLIB_COMPILE_SCHEMAS} --allow-any-name "${BUILD_DIR}"/bin || die + "${EPREFIX%/}/"${GLIB_COMPILE_SCHEMAS} --allow-any-name "${BUILD_DIR}"/bin || die export GSETTINGS_BACKEND="memory" export GSETTINGS_SCHEMA_DIR="${BUILD_DIR}/bin" |