Fix make uninstall

for loop directory wildcard includes the directory name. No need to
specify the dir name when removing file.

Signed-off-by: Ayman Bagabas <ayman.bagabas@gmail.com>
This commit is contained in:
Ayman Bagabas 2019-07-01 19:18:36 -04:00
parent cd5fd9bde2
commit 04528a0fb9
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ install:
uninstall:
for script in bin/*; do \
rm -f $(DESTDIR)$(PREFIX)/bin/$$script; \
rm -f $(DESTDIR)$(PREFIX)/$$script; \
done
rm -rf $(DESTDIR)$(PREFIX)/share/mutt-wizard