aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'pym/gentoolkit/eclean/search.py')
-rw-r--r--pym/gentoolkit/eclean/search.py4
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):