From 57226243fc04b60914247f5d73bc1cd433c48ee9 Mon Sep 17 00:00:00 2001 From: roktas Date: Sun, 29 Oct 2006 07:11:37 +0000 Subject: 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 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v1.2.3