From: David Griffith Date: Mon, 10 Sep 2018 11:49:14 +0000 (-0700) Subject: Fix stupid oversight in install_sfrotz and uninstall_sfrotz targets. X-Git-Url: https://scope-eye.net/git/?a=commitdiff_plain;h=b6dc784903b00b727c53580296fa6bc4b5c6ef95;p=liskon_frotz.git Fix stupid oversight in install_sfrotz and uninstall_sfrotz targets. --- diff --git a/Makefile b/Makefile index 99edeb2..ea7edab 100644 --- a/Makefile +++ b/Makefile @@ -291,12 +291,12 @@ uninstall_dfrotz: install_sfrotz: $(SFROTZ_BIN) install -d "$(DESTDIR)$(PREFIX)/bin" "$(DESTDIR)$(MANDIR)/man6" - install "$(DFROTZ_BIN)" "$(DESTDIR)$(PREFIX)/bin/" + install "$(SFROTZ_BIN)" "$(DESTDIR)$(PREFIX)/bin/" install -m 644 doc/sfrotz.6 "$(DESTDIR)$(MANDIR)/man6/" uninstall_sfrotz: - rm -f "$(DESTDIR)$(PREFIX)/bin/dfrotz" - rm -f "$(DESTDIR)$(MANDIR)/man6/dfrotz.6" + rm -f "$(DESTDIR)$(PREFIX)/bin/sfrotz" + rm -f "$(DESTDIR)$(MANDIR)/man6/sfrotz.6" install_all: install_frotz install_dfrotz install_sfrotz