aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b>2007-02-23 17:31:46 +0000
committerfiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b>2007-02-23 17:31:46 +0000
commite0303dfc793074f31c3ab0273fb959ad29a63545 (patch)
tree90314e9dde7523403ef8215d2d52f742e65507cb
parente9d66b8ed8d2525b8951c88f4f2ade88f9161df3 (diff)
downloadpandoc-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
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index d9508c95d..1c4c388db 100644
--- a/Makefile
+++ b/Makefile
@@ -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)