1- symlinks aren't `vpath-ed'. that is, if VPATH="chop(/bin)=:/tmp/bin",
2  then opening a symlink ~/home/ls -> /bin/ls will open /bin/ls
3  directly, and not first try to open /tmp/bin/ls.
4
5- dpkg-shlibdeps gets a sig 11 (avoided with neat VPATH trick in fakeroot,
6  but nevertheless, there's a bug in libtricks there somewhere).
7
8- readlink on a ordinary file/dir without VPATHSYMLINK set will still
9  not return an error, if the file is affected by the VPATH. Should,
10  according to readlink(2), return EINVAL.
11
12- in trick-chroot, the output of `pwd' initially isn't correct. After the
13  first cd this is corrected, but anyway. Should use vpath_findpath() in
14  getcwd().
15
16- nice() is called too often. It's called for every vpath
17  component (vpath::vpath::vpath), needs only to be called once.
18
19- nicepath -- is dat echt wel goed als path met een '/' begint???
20  moet nicepath echt wel zoveel doen met 't huidige filesysteem?