Fix stupid oversight in install_sfrotz and uninstall_sfrotz targets.
authorDavid Griffith <dave@661.org>
Mon, 10 Sep 2018 11:49:14 +0000 (04:49 -0700)
committerDavid Griffith <dave@661.org>
Mon, 10 Sep 2018 11:49:14 +0000 (04:49 -0700)
Makefile

index 99edeb2f58ea63c52389934881708dff7c40ba7a..ea7edab68ae271fb165e8263d57d61e01b0686bc 100644 (file)
--- 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