From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 618ED15808B for ; Tue, 15 Feb 2022 22:21:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 81818E07D0; Tue, 15 Feb 2022 22:21:35 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 62542E07D0 for ; Tue, 15 Feb 2022 22:21:35 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 235BB3431EB for ; Tue, 15 Feb 2022 22:21:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9DBEF272 for ; Tue, 15 Feb 2022 22:21:32 +0000 (UTC) From: "Jakov Smolić" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jakov Smolić" Message-ID: <1644963618.37a0a867d13cde822c22ad74d83ea029b0f9fdc0.jsmolic@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: xfce-base/exo/ X-VCS-Repository: repo/gentoo X-VCS-Files: xfce-base/exo/exo-4.16.3.ebuild X-VCS-Directories: xfce-base/exo/ X-VCS-Committer: jsmolic X-VCS-Committer-Name: Jakov Smolić X-VCS-Revision: 37a0a867d13cde822c22ad74d83ea029b0f9fdc0 X-VCS-Branch: master Date: Tue, 15 Feb 2022 22:21:32 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: c785ca06-20dc-407b-a0c1-7eccbcc8b88b X-Archives-Hash: 61aca419a179a82dc0f25b8a0eeb87f0 commit: 37a0a867d13cde822c22ad74d83ea029b0f9fdc0 Author: Jakov Smolić gentoo org> AuthorDate: Tue Feb 15 22:11:41 2022 +0000 Commit: Jakov Smolić gentoo org> CommitDate: Tue Feb 15 22:20:18 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=37a0a867 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ć gentoo.org> xfce-base/exo/exo-4.16.3.ebuild | 2 ++ 1 file changed, 2 insertions(+) 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() {