diff options
author | Jakov Smolić <jsmolic@gentoo.org> | 2022-02-15 23:11:41 +0100 |
---|---|---|
committer | Jakov Smolić <jsmolic@gentoo.org> | 2022-02-15 23:20:18 +0100 |
commit | 37a0a867d13cde822c22ad74d83ea029b0f9fdc0 (patch) | |
tree | 6b883297a8bd307a264d1789dd038ca333afea31 /xfce-base | |
parent | dev-lua/luacov: Fix name of doc dir (diff) | |
download | gentoo-37a0a867d13cde822c22ad74d83ea029b0f9fdc0.tar.gz gentoo-37a0a867d13cde822c22ad74d83ea029b0f9fdc0.tar.bz2 gentoo-37a0a867d13cde822c22ad74d83ea029b0f9fdc0.zip |
xfce-base/exo: Call intltoolize after eautoreconf
- The build system wants the po/Makefile.in.in file to be created by
intltoolize, so let's manually call it after eautoreconf to make sure
it's ran after glib-gettextize.
Closes: https://bugs.gentoo.org/829859
Signed-off-by: Jakov Smolić <jsmolic@gentoo.org>
Diffstat (limited to 'xfce-base')
-rw-r--r-- | xfce-base/exo/exo-4.16.3.ebuild | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/xfce-base/exo/exo-4.16.3.ebuild b/xfce-base/exo/exo-4.16.3.ebuild index da8c8f509f3c..e16e6e1248df 100644 --- a/xfce-base/exo/exo-4.16.3.ebuild +++ b/xfce-base/exo/exo-4.16.3.ebuild @@ -32,6 +32,8 @@ PATCHES=( src_prepare() { default eautoreconf + # needs to be executed after glib-gettextize, bug 829859 + intltoolize --automake --copy --force || die "intltoolize failed" } src_install() { |