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)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 3B56A15808D for ; Mon, 18 Apr 2022 09:20:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E4963E096A; Mon, 18 Apr 2022 09:20:12 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 D47ADE0969 for ; Mon, 18 Apr 2022 09:20:11 +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 3E653341628 for ; Mon, 18 Apr 2022 09:20:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8D4D9355 for ; Mon, 18 Apr 2022 09:20:07 +0000 (UTC) From: "Florian Schmaus" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Florian Schmaus" Message-ID: <1650270845.00ae4c52796b402b88f6cc5db45709f01015632c.flow@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/xen/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emulation/xen/xen-4.16.0-r5.ebuild X-VCS-Directories: app-emulation/xen/ X-VCS-Committer: flow X-VCS-Committer-Name: Florian Schmaus X-VCS-Revision: 00ae4c52796b402b88f6cc5db45709f01015632c X-VCS-Branch: master Date: Mon, 18 Apr 2022 09:20:07 +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: 42cdeaa3-9808-49ac-a5b4-624d2e08d355 X-Archives-Hash: 87d0ef728b7f9099e5fcc3029c1f4e98 commit: 00ae4c52796b402b88f6cc5db45709f01015632c Author: Florian Schmaus gentoo org> AuthorDate: Mon Apr 18 08:09:01 2022 +0000 Commit: Florian Schmaus gentoo org> CommitDate: Mon Apr 18 08:34:05 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=00ae4c52 app-emulation/xen: shorten ebuild: drop merge_config.sh, use alldefconfig Signed-off-by: Florian Schmaus gentoo.org> app-emulation/xen/xen-4.16.0-r5.ebuild | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/app-emulation/xen/xen-4.16.0-r5.ebuild b/app-emulation/xen/xen-4.16.0-r5.ebuild index bcfc3bd86b8c..994e9c774ce3 100644 --- a/app-emulation/xen/xen-4.16.0-r5.ebuild +++ b/app-emulation/xen/xen-4.16.0-r5.ebuild @@ -116,7 +116,6 @@ src_prepare() { src_configure() { cd xen || die - emake defconfig touch gentoo-config || die if use arm; then @@ -129,13 +128,7 @@ src_configure() { echo "CONFIG_XSM=y" > gentoo-config || die fi - local merge_cmd=( - ./tools/kconfig/merge_config.sh - -m -r - .config gentoo-config - ) - einfo "${merge_cmd[*]}" - "${merge_cmd[@]}" || die "Merging Gentoo config failed" + emake KCONFIG_ALLCONFIG=gentoo-config alldefconfig # remove flags unset CFLAGS