File: BUGS

package info (click to toggle)
fakeroot 1.20.2-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 2,628 kB
  • ctags: 1,130
  • sloc: sh: 11,765; ansic: 4,701; makefile: 260; perl: 14
file content (20 lines) | stat: -rw-r--r-- 926 bytes parent folder | download | duplicates (16)
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?