summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShawn Landden <shawn@git.icu>2021-06-15 11:05:00 +0000
committerGitHub <noreply@github.com>2021-06-15 11:05:00 +0000
commit68a9d020737449a6bc6cb09cf7161caa47dc498d (patch)
treec130810c3033e79af76be79277a0421663c8b963
parent50d821efe99cae82c05be0a4ab3b4035ef0d3883 (diff)
parentb35c8914d9b1e048b8a13e7cdeefe8bc44b4d435 (diff)
downloaddistcc-git-68a9d020737449a6bc6cb09cf7161caa47dc498d.tar.gz
Merge pull request #424 from hudeng-go/master
fix: make uninstall failed Inserts missing semicolon
-rw-r--r--Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in
index b9ce974..51f4072 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -1196,7 +1196,7 @@ uninstall-include-server:
uninstall-man:
for p in $(man1_MEN); do \
file="$(DESTDIR)$(man1dir)/`basename $$p`"; \
- if [ -e "$$file" ]; then rm -fv "$$file"; fi \
+ if [ -e "$$file" ]; then rm -fv "$$file"; fi; \
if [ -e "$$file.gz" ]; then rm -fv "$$file.gz"; fi \
done
-[ "`basename $(man1dir)`" = "$(PACKAGE)" ] && rmdir "$(DESTDIR)$(man1dir)"