From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id BF7351381F2 for ; Sat, 25 Jun 2016 03:09:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7014B141E9; Sat, 25 Jun 2016 03:09:35 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 07745141E9 for ; Sat, 25 Jun 2016 03:09:34 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 615AB340756 for ; Sat, 25 Jun 2016 03:09:33 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 76BFF2091 for ; Sat, 25 Jun 2016 03:09:29 +0000 (UTC) From: "Mike Frysinger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Frysinger" Message-ID: <1466824152.b60e6814ea6c95cedac4e03c2a1ce574207dea30.vapier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/file/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/file/file-5.28.ebuild sys-apps/file/file-9999.ebuild X-VCS-Directories: sys-apps/file/ X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: b60e6814ea6c95cedac4e03c2a1ce574207dea30 X-VCS-Branch: master Date: Sat, 25 Jun 2016 03:09:29 +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-Archives-Salt: e16b797e-80a9-4b07-88f2-1429e9b77692 X-Archives-Hash: 4e40ba0b4ce24909391eeb7d0d633aac commit: b60e6814ea6c95cedac4e03c2a1ce574207dea30 Author: Mike Frysinger gentoo org> AuthorDate: Sat Jun 25 03:07:30 2016 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Sat Jun 25 03:09:12 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b60e6814 sys-apps/file: build magic.h before libmagic.la #586444 Since the header is a BUILT_SOURCES which is normally created only when you run `make all`, make sure we generate it by hand before building the library in the multilib case. sys-apps/file/file-5.28.ebuild | 4 +++- sys-apps/file/file-9999.ebuild | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/sys-apps/file/file-5.28.ebuild b/sys-apps/file/file-5.28.ebuild index 6ebccd6..ee20eaa 100644 --- a/sys-apps/file/file-5.28.ebuild +++ b/sys-apps/file/file-5.28.ebuild @@ -78,7 +78,9 @@ multilib_src_compile() { if multilib_is_native_abi ; then emake else - emake -C src libmagic.la + cd src + emake magic.h #586444 + emake libmagic.la fi } diff --git a/sys-apps/file/file-9999.ebuild b/sys-apps/file/file-9999.ebuild index 658a92f..1bdaecc 100644 --- a/sys-apps/file/file-9999.ebuild +++ b/sys-apps/file/file-9999.ebuild @@ -78,7 +78,9 @@ multilib_src_compile() { if multilib_is_native_abi ; then emake else - emake -C src libmagic.la + cd src + emake magic.h #586444 + emake libmagic.la fi }