From: Zac Medico Date: Thu, 16 Apr 2009 18:04:38 +0000 (-0000) Subject: Call realpath(repodir) so it's conistent with the value that pordbapi uses. X-Git-Tag: v2.2_rc31~23 X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=9ff41ae9181778b7b67b8f2271b5724f240d4098;p=portage.git Call realpath(repodir) so it's conistent with the value that pordbapi uses. Thanks to Fabian Groffen for reporting. svn path=/main/trunk/; revision=13349 --- diff --git a/bin/repoman b/bin/repoman index f50705174..f3c93addf 100755 --- a/bin/repoman +++ b/bin/repoman @@ -535,6 +535,7 @@ startdir = normalize_path(mydir) repodir = startdir for x in range(0, repolevel - 1): repodir = os.path.dirname(repodir) +repodir = os.path.realpath(repodir) def caterror(mycat): err(mycat+" is not an official category. Skipping QA checks in this directory.\nPlease ensure that you add "+catdir+" to "+repodir+"/profiles/categories\nif it is a new category.")