Hello! I found out, that there is some confusion in file access righs in pil21.tgz archive. For example file “lib/replica.l” have executable flag, and “loc/FR.l” have -rw------- mode. It can be fixed by this one-liner:
find . -type f -exec chmod 644 {} \; && chmod 755 bin/* misc/bigtest pil vip Also files in archive pil21.tgz have user and group name “u0_a114” and UID/GID 10114. As I see usually tar files are created with UID/GID 0. And it can be done by adding these parameters to tar command: --owner=0 --group=0 --numeric-owner All of these are not a problem at all, it is just to make a bit simplier and clearer. Regards -- UNSUBSCRIBE: mailto:picolisp@software-lab.de?subject=Unsubscribe