diff options
author | Bart Oldeman <bart.oldeman@calculquebec.ca> | 2023-03-22 02:18:58 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2023-03-22 05:45:49 +0000 |
commit | 8491870b9009df0aa0b4562ef7bcaaf8f11241c3 (patch) | |
tree | bacc9a678745203426085c391259dd7555fb294b /mate-base | |
parent | net-misc/seafile-client: version bump to 9.0.1 (diff) | |
download | gentoo-8491870b9009df0aa0b4562ef7bcaaf8f11241c3.tar.gz gentoo-8491870b9009df0aa0b4562ef7bcaaf8f11241c3.tar.bz2 gentoo-8491870b9009df0aa0b4562ef7bcaaf8f11241c3.zip |
mate-base/mate-applets: Fix install in prefix
configure needs --libexecdir="${EPREFIX}"/usr/libexec/mate-applets
to avoid files installed outside the prefix.
Signed-off-by: Bart Oldeman <bart.oldeman@calculquebec.ca>
Closes: https://github.com/gentoo/gentoo/pull/30295
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'mate-base')
-rw-r--r-- | mate-base/mate-applets/mate-applets-1.26.0.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mate-base/mate-applets/mate-applets-1.26.0.ebuild b/mate-base/mate-applets/mate-applets-1.26.0.ebuild index 66fb21cd1ae1..3706138e97dc 100644 --- a/mate-base/mate-applets/mate-applets-1.26.0.ebuild +++ b/mate-base/mate-applets/mate-applets-1.26.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -69,7 +69,7 @@ src_configure() { use cpupower || myconf="--disable-cpufreq" mate_src_configure \ - --libexecdir=/usr/libexec/mate-applets \ + --libexecdir="${EPREFIX}"/usr/libexec/mate-applets \ $(use_with X x) \ $(use_with upower) \ $(use_with netlink nl) \ |