diff options
author | rrt <unknown> | 2000-10-12 15:21:36 +0000 |
---|---|---|
committer | rrt <unknown> | 2000-10-12 15:21:36 +0000 |
commit | 8a42a90d764fa45e490e969e5b64c944a57db5bd (patch) | |
tree | 4c7c0468cedca65e2802ec31dcca1d06c83ab149 /distrib/Makefile-bin.in | |
parent | ff55074d483155afc78cf151e1f5469ac13b5749 (diff) | |
download | haskell-8a42a90d764fa45e490e969e5b64c944a57db5bd.tar.gz |
[project @ 2000-10-12 15:21:36 by rrt]
Simple fix for install of HTML: mimic recursive install with chmod and cp.
Diffstat (limited to 'distrib/Makefile-bin.in')
-rw-r--r-- | distrib/Makefile-bin.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/distrib/Makefile-bin.in b/distrib/Makefile-bin.in index f81bcaeb52..7da408ccf6 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) |