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
This commit is contained in:
roktas 2006-10-29 07:11:37 +00:00
parent bdfe906c02
commit 57226243fc

View file

@ -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