diff options
author | Bart Oldeman <bart.oldeman@calculquebec.ca> | 2023-03-21 19:04:43 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2023-03-22 01:16:49 +0000 |
commit | 040a452b8ae302d9c2f4b29c7f9409423299daaa (patch) | |
tree | 4598c571e5dde64e3c2cd69573f4c24d25c23854 /mate-base/mate-panel | |
parent | sci-physics/lhapdf: add 9999 (diff) | |
download | gentoo-040a452b8ae302d9c2f4b29c7f9409423299daaa.tar.gz gentoo-040a452b8ae302d9c2f4b29c7f9409423299daaa.tar.bz2 gentoo-040a452b8ae302d9c2f4b29c7f9409423299daaa.zip |
mate-base/mate-panel: 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/30290
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'mate-base/mate-panel')
-rw-r--r-- | mate-base/mate-panel/mate-panel-1.26.0-r1.ebuild | 4 | ||||
-rw-r--r-- | mate-base/mate-panel/mate-panel-1.26.2.ebuild | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/mate-base/mate-panel/mate-panel-1.26.0-r1.ebuild b/mate-base/mate-panel/mate-panel-1.26.0-r1.ebuild index 00b07dd9c9d9..938c7e9d57b3 100644 --- a/mate-base/mate-panel/mate-panel-1.26.0-r1.ebuild +++ b/mate-base/mate-panel/mate-panel-1.26.0-r1.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 @@ -67,7 +67,7 @@ BDEPEND=" src_configure() { mate_src_configure \ - --libexecdir=/usr/libexec/mate-applets \ + --libexecdir="${EPREFIX}"/usr/libexec/mate-applets \ --disable-deprecation-flags \ $(use_enable X x11) \ $(use_enable introspection) \ diff --git a/mate-base/mate-panel/mate-panel-1.26.2.ebuild b/mate-base/mate-panel/mate-panel-1.26.2.ebuild index 56d6e902fa3d..5b95522d04f2 100644 --- a/mate-base/mate-panel/mate-panel-1.26.2.ebuild +++ b/mate-base/mate-panel/mate-panel-1.26.2.ebuild @@ -64,7 +64,7 @@ BDEPEND=" src_configure() { mate_src_configure \ - --libexecdir=/usr/libexec/mate-applets \ + --libexecdir="${EPREFIX}"/usr/libexec/mate-applets \ --disable-deprecation-flags \ $(use_enable X x11) \ $(use_enable introspection) \ |