From a582ad8a270af9861d5c1e0bb269012d2bd5b3f5 Mon Sep 17 00:00:00 2001 From: Brian Dolbec Date: Sat, 22 Dec 2012 23:34:02 -0800 Subject: fix bug 445904 make.conf path --- pym/gentoolkit/eclean/search.py | 4 ++-- 1 file 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): -- cgit v1.2.3