From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 651011384B4 for ; Sun, 6 Dec 2015 17:29:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 24C1121C0CD; Sun, 6 Dec 2015 17:29:45 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 193C021C0CD for ; Sun, 6 Dec 2015 17:29:43 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 25101340813 for ; Sun, 6 Dec 2015 17:29:42 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 927D9E68 for ; Sun, 6 Dec 2015 17:29:37 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1449422866.d91824b43c1e1a63a01fec13e0c0c87c856d29ed.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:python-cleanup-r2 commit in: eclass/ X-VCS-Repository: repo/gentoo X-VCS-Files: eclass/python-any-r1.eclass X-VCS-Directories: eclass/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: d91824b43c1e1a63a01fec13e0c0c87c856d29ed X-VCS-Branch: python-cleanup-r2 Date: Sun, 6 Dec 2015 17:29:37 +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-Archives-Salt: 766de1aa-6b99-4789-8443-172ac00781e2 X-Archives-Hash: e58610c58c57962fe49d0e4f19a66ad3 commit: d91824b43c1e1a63a01fec13e0c0c87c856d29ed Author: Michał Górny gentoo org> AuthorDate: Sun Dec 6 15:50:05 2015 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Dec 6 17:27:46 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d91824b4 python-any-r1.eclass: Mark eclass-generated variables read-only eclass/python-any-r1.eclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eclass/python-any-r1.eclass b/eclass/python-any-r1.eclass index 7d86b9a..82ead76 100644 --- a/eclass/python-any-r1.eclass +++ b/eclass/python-any-r1.eclass @@ -133,7 +133,7 @@ _python_any_set_globals() { PYTHON_DEPS="${PYTHON_PKG_DEP} ${PYTHON_DEPS}" done - PYTHON_DEPS="|| ( ${PYTHON_DEPS})" + declare -g -r PYTHON_DEPS="|| ( ${PYTHON_DEPS})" } _python_any_set_globals unset -f _python_any_set_globals