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 496B81381F3 for ; Sun, 23 Dec 2012 07:34:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 487B021C0D6; Sun, 23 Dec 2012 07:34:41 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BF50A21C0D6 for ; Sun, 23 Dec 2012 07:34:40 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B53D433D90D for ; Sun, 23 Dec 2012 07:34:39 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 484BEE543C for ; Sun, 23 Dec 2012 07:34:38 +0000 (UTC) From: "Brian Dolbec" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Dolbec" Message-ID: <1356248042.a582ad8a270af9861d5c1e0bb269012d2bd5b3f5.dol-sen@gentoo> Subject: [gentoo-commits] proj/gentoolkit:gentoolkit commit in: pym/gentoolkit/eclean/ X-VCS-Repository: proj/gentoolkit X-VCS-Files: pym/gentoolkit/eclean/search.py X-VCS-Directories: pym/gentoolkit/eclean/ X-VCS-Committer: dol-sen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: a582ad8a270af9861d5c1e0bb269012d2bd5b3f5 X-VCS-Branch: gentoolkit Date: Sun, 23 Dec 2012 07:34:38 +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: 240b603e-373a-4d1b-a40b-ff49cf42f8d5 X-Archives-Hash: 7fa21160b762e532650a810485831827 commit: a582ad8a270af9861d5c1e0bb269012d2bd5b3f5 Author: Brian Dolbec gentoo org> AuthorDate: Sun Dec 23 07:34:02 2012 +0000 Commit: Brian Dolbec gmail com> CommitDate: Sun Dec 23 07:34:02 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gentoolkit.git;a=commit;h=a582ad8a fix bug 445904 make.conf path --- pym/gentoolkit/eclean/search.py | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pym/gentoolkit/eclean/search.py b/pym/gentoolkit/eclean/search.py index 4992ad7..5fcb6bc 100644 --- a/pym/gentoolkit/eclean/search.py +++ b/pym/gentoolkit/eclean/search.py @@ -45,7 +45,7 @@ def get_distdir(): if not os.path.isdir(d): e = pp.error("%s does not appear to be a directory.\n" % d) e += pp.error("Please set DISTDIR to a sane value.\n") - e += pp.error("(Check your /etc/make.conf and environment).") + e += pp.error("(Check your make.conf file and environment).") print( e, file=sys.stderr) exit(1) return d @@ -533,7 +533,7 @@ def findPackages( del test except EnvironmentError as er: print( pp.error("Error accessing PKGDIR." ), file=sys.stderr) - print( pp.error("(Check your /etc/make.conf and environment)."), file=sys.stderr) + print( pp.error("(Check your make.conf file and environment)."), file=sys.stderr) print( pp.error("Error: %s" %str(er)), file=sys.stderr) exit(1) for root, dirs, files in os.walk(pkgdir):