Browse Source

Revert "Fix script removal (#310)"

This reverts commit 4904fcf51f.
tags/v3.1
Luke Smith 4 years ago
parent
commit
15941b43e7
No known key found for this signature in database GPG Key ID: 4C50B54A911F6252
1 changed files with 2 additions and 3 deletions
  1. +2
    -3
      Makefile

+ 2
- 3
Makefile 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


Loading…
Cancel
Save