aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorroktas <roktas@788f1e2b-df1e-0410-8736-df70ead52e1b>2006-10-29 07:11:37 +0000
committerroktas <roktas@788f1e2b-df1e-0410-8736-df70ead52e1b>2006-10-29 07:11:37 +0000
commit57226243fc04b60914247f5d73bc1cd433c48ee9 (patch)
tree89780175964f7aa31c3c9cbf08786e8feb2f3c48 /Makefile
parentbdfe906c02e9f5a106b97bffc89e8a3e5a41e724 (diff)
downloadpandoc-57226243fc04b60914247f5d73bc1cd433c48ee9.tar.gz
Portability fix. Remove rmdir(1)'s '--ignore-fail-on-non-empty' option, as
it is unsupported in BSD version. Note that the relevant line has already started with a '-' which means that make(1) will ignore any error. git-svn-id: https://pandoc.googlecode.com/svn/trunk@31 788f1e2b-df1e-0410-8736-df70ead52e1b
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index db139f4dd..7079f997f 100644
--- a/Makefile
+++ b/Makefile
@@ -108,7 +108,7 @@ install-doc: $(doc_all)
uninstall-doc:
-for f in $(doc_all); do rm -f $(DOCPATH)/$$f; done
-for f in $(man_all); do rm -f $(MANPATH)/$$f; done
- -rmdir --ignore-fail-on-non-empty $(DOCPATH)
+ -rmdir $(DOCPATH)
# Handle program installation manually (due to the deficiencies in Cabal).
.PHONY: install uninstall