1
0
This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
TP-Link_Archer-XR500v/EN7526G_3.18Kernel_SDK/tools/fakeroot/BUGS
2024-07-22 01:58:46 -03:00

20 lines
926 B
Plaintext
Executable File

- 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?