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 EFC25138334 for ; Sun, 4 Aug 2019 11:36:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B5651E08C4; Sun, 4 Aug 2019 11:36:37 +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 99C5DE08C4 for ; Sun, 4 Aug 2019 11:36:37 +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 6055A349823 for ; Sun, 4 Aug 2019 11:36:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0C3BF74D for ; Sun, 4 Aug 2019 11:36:35 +0000 (UTC) From: "Thomas Deutschmann" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Thomas Deutschmann" Message-ID: <1564918571.1026f3c18f89fb41ea6f7673380ed75eb2a3d20a.whissi@gentoo> Subject: [gentoo-commits] proj/genkernel:master commit in: / X-VCS-Repository: proj/genkernel X-VCS-Files: gen_compile.sh X-VCS-Directories: / X-VCS-Committer: whissi X-VCS-Committer-Name: Thomas Deutschmann X-VCS-Revision: 1026f3c18f89fb41ea6f7673380ed75eb2a3d20a X-VCS-Branch: master Date: Sun, 4 Aug 2019 11:36:35 +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: 73c3be77-8ad7-4a82-a712-eeb8689d7444 X-Archives-Hash: ca35a3c979891365d74580570d8440de commit: 1026f3c18f89fb41ea6f7673380ed75eb2a3d20a Author: Thomas Deutschmann gentoo org> AuthorDate: Sun Aug 4 11:31:39 2019 +0000 Commit: Thomas Deutschmann gentoo org> CommitDate: Sun Aug 4 11:36:11 2019 +0000 URL: https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=1026f3c1 gen_compile.sh: compile_external_modules(): Export KERNEL_OUTPUTDIR as KV_OUT_DIR Needed for emerge to find kernel config when KERNEL_OUTPUTDIR != KERNEL_DIR. Signed-off-by: Thomas Deutschmann gentoo.org> gen_compile.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gen_compile.sh b/gen_compile.sh index 5371ce2..fb77e2b 100755 --- a/gen_compile.sh +++ b/gen_compile.sh @@ -36,6 +36,8 @@ compile_external_modules() { return fi + local -x KV_OUT_DIR="${KERNEL_OUTPUTDIR}" + print_info 1 "$(get_indent 1)>> Compiling out-of-tree module(s) ..." print_info 3 "COMMAND: ${command}" 1 0 1