aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobin Jarry <robin@jarry.cc>2023-08-17 13:52:39 +0200
committerRobin Jarry <robin@jarry.cc>2023-08-24 14:14:45 +0200
commitd2082f839df2652dde0671acfe60f67040a8e4f8 (patch)
tree8d8869729b3225d375f8a6a61a8a2253cf459fa8
parent79fd950f93c1804f3e6bd2b0d88c19bbe70a61b4 (diff)
downloadaerc-d2082f839df2652dde0671acfe60f67040a8e4f8.tar.gz
mk: fix typos
Nothing serious but let's cleanup our mess. Fixes: d725defa07b5 ("mk: deprecate BSD make in favor of GNU make") Signed-off-by: Robin Jarry <robin@jarry.cc> Reviewed-by: Karel Balej <balejk@matfyz.cz>
-rw-r--r--GNUmakefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/GNUmakefile b/GNUmakefile
index 2a6b152e..71aa2704 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -82,7 +82,7 @@ doc: $(docs)
.PHONY: clean
clean:
- $(RM) $(docs) aerc $(cfilters)
+ $(RM) $(docs) aerc $(cfilters) linters.so
# Dependencies are added dynamically to the "install" rule with macros
.PHONY: install
@@ -103,7 +103,7 @@ uninstall:
done
@echo $(dirs) | tr ' ' '\n' | sort -ru | while read -r d; do \
if [ -d $$d ] && ! ls -Aq1 $$d | grep -q .; then \
- echo rm $$d && rmdir $$d || exit; \
+ echo rmdir $$d && rmdir $$d || exit; \
fi; \
done