From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (unknown [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 43081138334 for ; Sat, 26 Jan 2019 22:08:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2F8EFE0C0E; Sat, 26 Jan 2019 22:08:09 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 02C4FE0C0E for ; Sat, 26 Jan 2019 22:08:08 +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 9158C335D4F for ; Sat, 26 Jan 2019 22:08:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EFABB501 for ; Sat, 26 Jan 2019 22:08:05 +0000 (UTC) From: "Sergei Trofimovich" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sergei Trofimovich" Message-ID: <1548540474.5175a633115848cad72eeabfc995f2fcc449090d.slyfox@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/sparse/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-devel/sparse/sparse-9999.ebuild X-VCS-Directories: sys-devel/sparse/ X-VCS-Committer: slyfox X-VCS-Committer-Name: Sergei Trofimovich X-VCS-Revision: 5175a633115848cad72eeabfc995f2fcc449090d X-VCS-Branch: master Date: Sat, 26 Jan 2019 22:08:05 +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: e4902323-b02b-4638-9bc3-259970061967 X-Archives-Hash: 89cd0b8bc524ed1c09db155699da4164 commit: 5175a633115848cad72eeabfc995f2fcc449090d Author: Sergei Trofimovich gentoo org> AuthorDate: Sat Jan 26 22:07:34 2019 +0000 Commit: Sergei Trofimovich gentoo org> CommitDate: Sat Jan 26 22:07:54 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5175a633 sys-devel/sparse: drop 'install-all' reference, bug #671356 Daniel reports that install-all disappeared in https://git.kernel.org/pub/scm/devel/sparse/sparse.git/commit/Makefile?id=3b7d5e200ac64de2914b930933491b548b3d0bc0 and now breaks the build. Use default 'make all' unconditionally. Reported-by: Daniel M. Weeks Closes: https://bugs.gentoo.org/671356 Package-Manager: Portage-2.3.58, Repoman-2.3.12 Signed-off-by: Sergei Trofimovich gentoo.org> sys-devel/sparse/sparse-9999.ebuild | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/sys-devel/sparse/sparse-9999.ebuild b/sys-devel/sparse/sparse-9999.ebuild index 43d03a624df..8850a866452 100644 --- a/sys-devel/sparse/sparse-9999.ebuild +++ b/sys-devel/sparse/sparse-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -39,7 +39,3 @@ src_prepare() { export MAKEOPTS+=" V=1 AR=${AR} CC=${CC} HAVE_GTK2=$(usex gtk) HAVE_LLVM=$(usex llvm) HAVE_LIBXML=$(usex xml)" default } - -src_compile() { - emake $(usex test all all-installable) -}