diff options
author | Jason Stubbs <jstubbs@gentoo.org> | 2005-10-16 14:27:28 +0000 |
---|---|---|
committer | Jason Stubbs <jstubbs@gentoo.org> | 2005-10-16 14:27:28 +0000 |
commit | 591aca45762da66566b5d90147856f113f7a3e73 (patch) | |
tree | 6a53804608b80e1356c4cb2aef032a5223374f73 | |
parent | 020aa4c79874e8a0075cd1256576c99ae49c394b (diff) | |
download | portage-591aca45762da66566b5d90147856f113f7a3e73.tar.gz portage-591aca45762da66566b5d90147856f113f7a3e73.tar.bz2 portage-591aca45762da66566b5d90147856f113f7a3e73.zip |
Clarifying the error message when path/to/ebuild is used on an ebuild that isn't in a normal PORTDIR structure.
svn path=/main/branches/2.0/; revision=2138
-rwxr-xr-x | bin/emerge | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/emerge b/bin/emerge index 1be79e975..6edc87494 100755 --- a/bin/emerge +++ b/bin/emerge @@ -1080,7 +1080,7 @@ class depgraph: print red("*** page for details.") countdown(EMERGE_WARNING_DELAY, "Continuing...") else: - print red("\n*** "+x+" does not exist") + print red("\n*** %s is not in a valid PORTDIR heirarchy or does not exist" % x) sys.exit(1) if not self.create(["ebuild",portage.root,mykey],None,"--onlydeps" not in myopts): return (0,myfavorites) |