From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1107402-garchives=archives.gentoo.org@lists.gentoo.org> 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 95C31138335 for <garchives@archives.gentoo.org>; Sun, 25 Aug 2019 04:16:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C45DDE0806; Sun, 25 Aug 2019 04:16:43 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 9ACA7E0806 for <gentoo-commits@lists.gentoo.org>; Sun, 25 Aug 2019 04:16:43 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 62F3234A258 for <gentoo-commits@lists.gentoo.org>; Sun, 25 Aug 2019 04:16:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A8EF2758 for <gentoo-commits@lists.gentoo.org>; Sun, 25 Aug 2019 04:16:40 +0000 (UTC) From: "Georgy Yakovlev" <gyakovlev@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Georgy Yakovlev" <gyakovlev@gentoo.org> Message-ID: <1566706592.6e37b75cdbb0f621e6c919db6cb0a40bb57ddd32.gyakovlev@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-embedded/u-boot-tools/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-embedded/u-boot-tools/u-boot-tools-2019.01.ebuild X-VCS-Directories: dev-embedded/u-boot-tools/ X-VCS-Committer: gyakovlev X-VCS-Committer-Name: Georgy Yakovlev X-VCS-Revision: 6e37b75cdbb0f621e6c919db6cb0a40bb57ddd32 X-VCS-Branch: master Date: Sun, 25 Aug 2019 04:16:40 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: cb83c3bf-ea28-447c-905f-807bafb5c7af X-Archives-Hash: 73f419131129b72ae05556c94db1a449 commit: 6e37b75cdbb0f621e6c919db6cb0a40bb57ddd32 Author: Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org> AuthorDate: Sun Aug 25 04:07:48 2019 +0000 Commit: Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org> CommitDate: Sun Aug 25 04:16:32 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e37b75c dev-embedded/u-boot-tools: use tools-only defconfig We already use make tools-only build target But to buld tools-only on arches other than x86 or arm we need to configure with tools-only_defconfig as well, as plain defconfig tries to build everything on other arches. This change does not change what gets built, just allows to add more arches to ebuild, hence no revbump as no rebuild required. X-url: https://github.com/u-boot/u-boot/commit/80870e2a664e277df0b6c0604bc4c5591aebde67 Reported-by: Shawn Anastasio <shawn <AT> anastas.io> Package-Manager: Portage-2.3.73, Repoman-2.3.17 Signed-off-by: Georgy Yakovlev <gyakovlev <AT> gentoo.org> dev-embedded/u-boot-tools/u-boot-tools-2019.01.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-embedded/u-boot-tools/u-boot-tools-2019.01.ebuild b/dev-embedded/u-boot-tools/u-boot-tools-2019.01.ebuild index ef93a005196..fa4a3233b98 100644 --- a/dev-embedded/u-boot-tools/u-boot-tools-2019.01.ebuild +++ b/dev-embedded/u-boot-tools/u-boot-tools-2019.01.ebuild @@ -31,7 +31,7 @@ src_compile() { HOSTCC="$(tc-getCC)" \ HOSTCFLAGS="${CFLAGS} ${CPPFLAGS}"' $(HOSTCPPFLAGS)' \ HOSTLDFLAGS="${LDFLAGS}" \ - defconfig + tools-only_defconfig emake \ V=1 \