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:
parent
bdfe906c02
commit
57226243fc
1 changed files with 1 additions and 1 deletions
2
Makefile
2
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
|
||||
|
|
Loading…
Add table
Reference in a new issue