From e0303dfc793074f31c3ab0273fb959ad29a63545 Mon Sep 17 00:00:00 2001
From: fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b>
Date: Fri, 23 Feb 2007 17:31:46 +0000
Subject: [PATCH] '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
---
 Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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)