summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAyman Bagabas <ayman.bagabas@gmail.com>2019-07-01 19:18:36 -0400
committerAyman Bagabas <ayman.bagabas@gmail.com>2019-07-01 19:20:27 -0400
commit04528a0fb92ea57be040a7ed87901d8186c970ff (patch)
treec8818fdb6671727768a21e110cbc11ea5c503130
parentcd5fd9bde283454bb64549bb064ecd3d50500d23 (diff)
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>
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index c0a6a05..7c95b7f 100644
--- 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