Browse Source

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>
tags/v3.1
Ayman Bagabas 5 years ago
parent
commit
04528a0fb9
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      Makefile

+ 1
- 1
Makefile 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



Loading…
Cancel
Save