diff options
author | fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2007-02-23 17:31:46 +0000 |
---|---|---|
committer | fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2007-02-23 17:31:46 +0000 |
commit | e0303dfc793074f31c3ab0273fb959ad29a63545 (patch) | |
tree | 90314e9dde7523403ef8215d2d52f742e65507cb /Makefile | |
parent | e9d66b8ed8d2525b8951c88f4f2ade88f9161df3 (diff) | |
download | pandoc-e0303dfc793074f31c3ab0273fb959ad29a63545.tar.gz |
'cp -a' does not work in BSD. Replace with 'cp -R'.
Note that we don't want user and group to be preserved,
anyway.
git-svn-id: https://pandoc.googlecode.com/svn/trunk@547 788f1e2b-df1e-0410-8736-df70ead52e1b
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -178,7 +178,7 @@ uninstall-doc: # Library documents installation. .PHONY: install-lib-doc uninstall-lib-doc install-lib-doc: build-lib-doc - $(INSTALL) -d $(LIBDOCPATH) && cp -a html $(LIBDOCPATH)/ + $(INSTALL) -d $(LIBDOCPATH) && cp -R html $(LIBDOCPATH)/ uninstall-lib-doc: -rm -rf $(LIBDOCPATH)/html -rmdir $(LIBDOCPATH) |