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 B02CB138334 for ; Wed, 3 Jul 2019 21:28:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EAD39E090A; Wed, 3 Jul 2019 21:27:59 +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 C5291E090A for ; Wed, 3 Jul 2019 21:27:59 +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 22100346F13 for ; Wed, 3 Jul 2019 21:27:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9E93C449 for ; Wed, 3 Jul 2019 21:27:53 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <1562189185.f4aa49bc1ba210a1257ae6291a60d0944c32691d.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: bin/ X-VCS-Repository: proj/portage X-VCS-Files: bin/ebuild.sh X-VCS-Directories: bin/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: f4aa49bc1ba210a1257ae6291a60d0944c32691d X-VCS-Branch: master Date: Wed, 3 Jul 2019 21:27:53 +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: d3489d7e-7291-4791-892d-91860b200988 X-Archives-Hash: 6be4e7948668790c458747992b20e03b commit: f4aa49bc1ba210a1257ae6291a60d0944c32691d Author: Zac Medico sony com> AuthorDate: Wed Jul 3 21:20:00 2019 +0000 Commit: Zac Medico gentoo org> CommitDate: Wed Jul 3 21:26:25 2019 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=f4aa49bc ebuild.sh: suppress export error messages for eix-update Suppress export error messages like this for eix-update: /usr/lib/portage/python3.6/ebuild.sh: line 11: export: ___in_portage_iuse: not a function Fixes: 7f1aac111320 ("ebuild.sh: unexport ___in_portage_iuse function (bug 680810)") Bug: https://bugs.gentoo.org/680810 Bug: https://bugs.gentoo.org/689128 Signed-off-by: Zac Medico gentoo.org> bin/ebuild.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/ebuild.sh b/bin/ebuild.sh index 50a0330f3..56555a5b7 100755 --- a/bin/ebuild.sh +++ b/bin/ebuild.sh @@ -8,7 +8,7 @@ unalias -a # Make sure this isn't exported to scripts we execute. unset BASH_COMPAT -export -n -f ___in_portage_iuse +declare -F ___in_portage_iuse >/dev/null && export -n -f ___in_portage_iuse source "${PORTAGE_BIN_PATH}/isolated-functions.sh" || exit 1