Hello Lutz,
This would be a small change to 'Makefile' in the distro, but I recommend to change the 'uninstall' section according to this 'diff' output:
204,208c204,208
< -rm /usr/bin/newlisp
< -rm /usr/bin/newlisp-tk
< -rm -rf /usr/share/newlisp
< -rm /usr/share/man/man1/newlisp.1
< -rm /usr/share/man/man1/newlisp-tk.1
---
> -rm $(bindir)/newlisp
> -rm $(bindir)/newlisp-tk
> -rm -rf $(datadir)/newlisp
> -rm $(mandir)/man1/newlisp.1
> -rm $(mandir)/man1/newlisp-tk.1
Cheers, --Ricky
Thanks for the tip, look for it in 8.5.4
Lutz
Ooops! I just got 8.5.4 and the Makefile is still missing a change on one line in the 'uninstall' rule. Namely, change
-rm -rf /usr/share/newlisp
to
-rm -rf $(datadir)/newlisp
It will then be commensurate with the consistent use of '$(datadir)/newlisp/...' in the 'install' rule.
Cheers, --Ricky