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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 9BAC4138359 for ; Sun, 15 Nov 2020 10:41:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DC1DDE086D; Sun, 15 Nov 2020 10:41:48 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C60CCE086D for ; Sun, 15 Nov 2020 10:41:48 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A281B341276 for ; Sun, 15 Nov 2020 10:41:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E46213A9 for ; Sun, 15 Nov 2020 10:41:45 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1605436897.4487f6ef155fc063b80ca2c6fa56f02d1436d11b.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libexif/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/libexif/libexif-0.6.22_p20201105.ebuild X-VCS-Directories: media-libs/libexif/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 4487f6ef155fc063b80ca2c6fa56f02d1436d11b X-VCS-Branch: master Date: Sun, 15 Nov 2020 10:41:45 +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: 7a2d9244-d655-46f1-b0b2-ae2406f8318d X-Archives-Hash: 667d7e03f79f33fdc2589e6461d26cf9 commit: 4487f6ef155fc063b80ca2c6fa56f02d1436d11b Author: Sam James gentoo org> AuthorDate: Sun Nov 15 10:41:37 2020 +0000 Commit: Sam James gentoo org> CommitDate: Sun Nov 15 10:41:37 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4487f6ef media-libs/libexif: fix multilib build Bug: https://bugs.gentoo.org/754681 Package-Manager: Portage-3.0.8, Repoman-3.0.2 Signed-off-by: Sam James gentoo.org> media-libs/libexif/libexif-0.6.22_p20201105.ebuild | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/media-libs/libexif/libexif-0.6.22_p20201105.ebuild b/media-libs/libexif/libexif-0.6.22_p20201105.ebuild index e4162afac52..ff36b7d817a 100644 --- a/media-libs/libexif/libexif-0.6.22_p20201105.ebuild +++ b/media-libs/libexif/libexif-0.6.22_p20201105.ebuild @@ -3,7 +3,7 @@ EAPI=7 -inherit libtool multilib-minimal +inherit autotools multilib-minimal COMMIT="9266d14b5ca4e29b970fa03272318e5f99386e06" DESCRIPTION="Library for parsing, editing, and saving EXIF data" @@ -32,13 +32,11 @@ src_prepare() { default sed -i -e '/FLAGS=/s:-g::' configure.ac || die #390249 # Previously elibtoolize for BSD - elibtoolize - - multilib_copy_sources + eautoreconf } multilib_src_configure() { - ECONF_SOURCE=${S} econf \ + ECONF_SOURCE="${S}" econf \ $(use_enable doc docs) \ $(use_enable nls) \ $(use_enable static-libs static) \