diff options
author | Robin Jarry <robin@jarry.cc> | 2023-08-17 13:52:39 +0200 |
---|---|---|
committer | Robin Jarry <robin@jarry.cc> | 2023-08-24 14:14:45 +0200 |
commit | d2082f839df2652dde0671acfe60f67040a8e4f8 (patch) | |
tree | 8d8869729b3225d375f8a6a61a8a2253cf459fa8 /GNUmakefile | |
parent | 79fd950f93c1804f3e6bd2b0d88c19bbe70a61b4 (diff) | |
download | aerc-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>
Diffstat (limited to 'GNUmakefile')
-rw-r--r-- | GNUmakefile | 4 |
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 |