summaryrefslogtreecommitdiff
path: root/BUGS
blob: 406c7c3d66ee54f8e1a065a7f822107d531bcad3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
- symlinks aren't `vpath-ed'. that is, if VPATH="chop(/bin)=:/tmp/bin",
  then opening a symlink ~/home/ls -> /bin/ls will open /bin/ls
  directly, and not first try to open /tmp/bin/ls.

- dpkg-shlibdeps gets a sig 11 (avoided with neat VPATH trick in fakeroot,
  but nevertheless, there's a bug in libtricks there somewhere).

- readlink on a ordinary file/dir without VPATHSYMLINK set will still
  not return an error, if the file is affected by the VPATH. Should,
  according to readlink(2), return EINVAL.

- in trick-chroot, the output of `pwd' initially isn't correct. After the
  first cd this is corrected, but anyway. Should use vpath_findpath() in
  getcwd().

- nice() is called too often. It's called for every vpath
  component (vpath::vpath::vpath), needs only to be called once.

- nicepath -- is dat echt wel goed als path met een '/' begint???
  moet nicepath echt wel zoveel doen met 't huidige filesysteem?