vishapoberon / compiler

vishap oberon compiler
http://oberon.vishap.am
GNU General Public License v3.0
186 stars 25 forks source link

Make does not properly uninstall: typo in variable name #97

Closed vgratian closed 2 years ago

vgratian commented 2 years ago

In src/tools/make/oberon.mk#L193:

@sh src/tools/make/addlibrary.sh uninstall "$(INSTALLDIR)/lib" $(oname)

$(oname) should be $(ONAME) (make is case-sensitive).

Because of this typo, when you run make uninstall, make does not remove /etc/ld.so.conf.d/libvoc.conf, instead, it tries to remove /etc/ld.so.conf.d/lib.conf.

norayr commented 2 years ago

fixed, thank you for noticing!