+2007-03-15 Paul Varner <fuzzyray@gentoo.org>
+ * equery: Fix equery check to not fail for symlinks prefixed with ./
+ (Bug #170702)
+
2007-03-14 Paul Varner <fuzzyray@gentoo.org>
* equery: Trim trailing slash from query for equery belongs command
(Bug #170981)
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)