Revert "Fix script removal (#310)"

This reverts commit 4904fcf51f.
This commit is contained in:
Luke Smith 2019-11-24 08:26:16 -05:00
parent 02b8e2a58c
commit 15941b43e7
No known key found for this signature in database
GPG Key ID: 4C50B54A911F6252

View File

@ -26,9 +26,8 @@ install:
cp -f mw.1 $(DESTDIR)$(MANPREFIX)/man1/mw.1
uninstall:
for scriptPath in bin/*; do \
scriptFile=$$(basename $$scriptPath); \
rm -f $(DESTDIR)$(PREFIX)/bin/$$scriptFile; \
for script in bin/*; do \
rm -f $(DESTDIR)$(PREFIX)/bin/$$script; \
done
rm -rf $(DESTDIR)$(PREFIX)/share/mutt-wizard
rm -f $(DESTDIR)$(MANPREFIX)/man1/mw.1