diff options
author | stwo <stwo> | 2012-08-07 07:19:27 (GMT) |
---|---|---|
committer | stwo <stwo> | 2012-08-07 07:19:27 (GMT) |
commit | de3dd1a56602c61a4d1d2f8583ebaddd68207f43 (patch) | |
tree | 5ec4a425d96b7cbd6d29ff9fbf4ef3db0cf7f52e /unix/Makefile.in | |
parent | 12138ab3247620cd373014b9fc8047d9902c365e (diff) | |
download | tcl-de3dd1a56602c61a4d1d2f8583ebaddd68207f43.zip tcl-de3dd1a56602c61a4d1d2f8583ebaddd68207f43.tar.gz tcl-de3dd1a56602c61a4d1d2f8583ebaddd68207f43.tar.bz2 |
A little more installer consistency tweaking.
Diffstat (limited to 'unix/Makefile.in')
-rw-r--r-- | unix/Makefile.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in index c369f57..4d5595d 100644 --- a/unix/Makefile.in +++ b/unix/Makefile.in @@ -894,17 +894,17 @@ install-doc: doc else true; \ fi; \ done; - @echo "Installing and cross-linking top-level (.1) docs"; + @echo "Installing and cross-linking top-level (.1) docs to $(MAN1_INSTALL_DIR)/"; @for i in $(TOP_DIR)/doc/*.1; do \ $(SHELL) $(UNIX_DIR)/installManPage $(MAN_FLAGS) $$i "$(MAN1_INSTALL_DIR)"; \ done - @echo "Installing and cross-linking C API (.3) docs"; + @echo "Installing and cross-linking C API (.3) docs to $(MAN3_INSTALL_DIR)/"; @for i in $(TOP_DIR)/doc/*.3; do \ $(SHELL) $(UNIX_DIR)/installManPage $(MAN_FLAGS) $$i "$(MAN3_INSTALL_DIR)"; \ done - @echo "Installing and cross-linking command (.n) docs"; + @echo "Installing and cross-linking command (.n) docs to $(MANN_INSTALL_DIR)/"; @for i in $(TOP_DIR)/doc/*.n; do \ $(SHELL) $(UNIX_DIR)/installManPage $(MAN_FLAGS) $$i "$(MANN_INSTALL_DIR)"; \ done |