I'm trying to build my personal freetype extension with non-blurry, e.g. microsoft fonts. But I'm getting a problem with one symlink
tc@box:/usr/lib$ ls -l libfreetype.so.6
lrwxrwxrwx 1 root staff 20 Aug 22 20:53 libfreetype.so.6 -> libfreetype.so.6.4.0
This is the original tinycore symlink.
Now I try to update it by loading my extension:
tc@box:/usr/lib$ tce-load -i sanefonts
/mnt/sda1/tce_acer/optional/sanefonts.tcz: OK
tc@box:/usr/lib$ ls -l /tmp/tcloop/sanefonts/usr/lib/libfreetype.so.6
lrwxrwxrwx 1 root staff 20 Aug 22 19:03 /tmp/tcloop/sanefonts/usr/lib/libfreetype.so.6 -> libfreetype.so.6.6.0
tc@box:/usr/lib$ ls -l libfreetype.so.6
lrwxrwxrwx 1 root staff 20 Aug 22 20:54 libfreetype.so.6 -> libfreetype.so.6.4.0
But after loading the extension the symlink is still the same...
And doing manually what I think tce-load is doing works as can be seen here:
tc@box:/usr/lib$ sudo busybox cp -as /tmp/tcloop/sanefonts/* /
tc@box:/usr/lib$ ls -l libfreetype.so.6
lrwxrwxrwx 1 root staff 46 Aug 22 20:54 libfreetype.so.6 -> /tmp/tcloop/sanefonts/usr/lib/libfreetype.so.6
This is especially strange to me, because other symlinks in the same folder, pointing to the same file get updated this way.
Any ideas?