From 8a42a90d764fa45e490e969e5b64c944a57db5bd Mon Sep 17 00:00:00 2001 From: rrt Date: Thu, 12 Oct 2000 15:21:36 +0000 Subject: [PATCH] [project @ 2000-10-12 15:21:36 by rrt] Simple fix for install of HTML: mimic recursive install with chmod and cp. --- distrib/Makefile-bin.in | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/distrib/Makefile-bin.in b/distrib/Makefile-bin.in index f81bcae..7da408c 100644 --- a/distrib/Makefile-bin.in +++ b/distrib/Makefile-bin.in @@ -240,7 +240,9 @@ install-info: install-dirs-info $(INSTALL_DATA) info/* $(infodir) install-html: install-dirs-html - $(INSTALL_DATA) html/* $(htmldir) + $(CHMOD) -R $(LIB_PERMS) html/* + $(CP) -r html/* $(htmldir) +# $(INSTALL_DATA) html/* $(htmldir) install-dirs-html: $(INSTALL_DIR) $(htmldir) -- 1.7.10.4