From: Zac Medico Date: Thu, 30 Apr 2009 07:13:20 +0000 (-0000) Subject: Call realpath(repodir) so it's conistent with the value that pordbapi uses. X-Git-Tag: v2.1.6.12~68 X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=b34d0c67b39f459259e6982770b8bc2c8a5dac4c;p=portage.git Call realpath(repodir) so it's conistent with the value that pordbapi uses. Thanks to Fabian Groffen for reporting. (trunk r13349) svn path=/main/branches/2.1.6/; revision=13505 --- diff --git a/bin/repoman b/bin/repoman index 5a27b95c2..74f629408 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.")