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:
parent
cd5fd9bde2
commit
04528a0fb9
2
Makefile
2
Makefile
@ -29,7 +29,7 @@ install:
|
|||||||
|
|
||||||
uninstall:
|
uninstall:
|
||||||
for script in bin/*; do \
|
for script in bin/*; do \
|
||||||
rm -f $(DESTDIR)$(PREFIX)/bin/$$script; \
|
rm -f $(DESTDIR)$(PREFIX)/$$script; \
|
||||||
done
|
done
|
||||||
rm -rf $(DESTDIR)$(PREFIX)/share/mutt-wizard
|
rm -rf $(DESTDIR)$(PREFIX)/share/mutt-wizard
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user