mutt-wizard

fork of Luke Smiths mutt-wizard
git clone git://git.jakekoroman.com/mutt-wizard
Log | Files | Refs | README | LICENSE

commit 04528a0fb92ea57be040a7ed87901d8186c970ff
parent cd5fd9bde283454bb64549bb064ecd3d50500d23
Author: Ayman Bagabas <ayman.bagabas@gmail.com>
Date:   Mon,  1 Jul 2019 19:18:36 -0400

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>

Diffstat:
MMakefile | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile b/Makefile @@ -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