From 6f2e5f15be9596bcddd223712fb309f77697d2dc Mon Sep 17 00:00:00 2001 From: fuzzyray Date: Fri, 16 Mar 2007 03:13:03 +0000 Subject: Fix equery check to not fail for symlinks prefixed with ./ (Bug #170702) svn path=/; revision=358 --- trunk/src/equery/equery | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'trunk/src/equery') diff --git a/trunk/src/equery/equery b/trunk/src/equery/equery index c6ab4c9..f141fd2 100755 --- a/trunk/src/equery/equery +++ b/trunk/src/equery/equery @@ -951,7 +951,8 @@ class CmdCheckIntegrity(Command): elif type == "sym": # FIXME: nastry strippery; portage should have this fixed! t = files[file][2] - target = os.path.normpath(t.strip()) + # target = os.path.normpath(t.strip()) + target = t.strip() if not os.path.islink(file): raise CheckException(file + " exists, but is not a symlink") tgt = os.readlink(file) -- cgit v1.2.3