mirror of https://github.com/YosysHQ/yosys.git
Merge pull request #320 from joshhead/uninstall-binpath-fix
Add missing slashes in paths for make uninstall
This commit is contained in:
commit
f648b7cf79
2
Makefile
2
Makefile
|
@ -478,7 +478,7 @@ ifeq ($(ENABLE_LIBYOSYS),1)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
uninstall:
|
uninstall:
|
||||||
$(INSTALL_SUDO) rm -vf $(addprefix $(DESTDIR)$(BINDIR),$(notdir $(TARGETS)))
|
$(INSTALL_SUDO) rm -vf $(addprefix $(DESTDIR)$(BINDIR)/,$(notdir $(TARGETS)))
|
||||||
$(INSTALL_SUDO) rm -rvf $(DESTDIR)$(DATDIR)
|
$(INSTALL_SUDO) rm -rvf $(DESTDIR)$(DATDIR)
|
||||||
ifeq ($(ENABLE_LIBYOSYS),1)
|
ifeq ($(ENABLE_LIBYOSYS),1)
|
||||||
$(INSTALL_SUDO) rm -vf $(DESTDIR)$(LIBDIR)/libyosys.so
|
$(INSTALL_SUDO) rm -vf $(DESTDIR)$(LIBDIR)/libyosys.so
|
||||||
|
|
Loading…
Reference in New Issue