Sfoglia il codice sorgente

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 anni fa
parent
commit
04528a0fb9
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. +1
    -1
      Makefile

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



Caricamento…
Annulla
Salva