summaryrefslogtreecommitdiffstats
path: root/unix/Makefile.in
diff options
context:
space:
mode:
authorrmax <rmax>2004-11-18 10:28:23 (GMT)
committerrmax <rmax>2004-11-18 10:28:23 (GMT)
commitb1a2ec4fd35e842ea30114b0096f4fcce6a8b943 (patch)
tree8cf150389cf6101dd3ec4ff123178029e1738445 /unix/Makefile.in
parent48cc85d50a977b2c192eec2f39ac45d6116aa95b (diff)
downloadtk-b1a2ec4fd35e842ea30114b0096f4fcce6a8b943.zip
tk-b1a2ec4fd35e842ea30114b0096f4fcce6a8b943.tar.gz
tk-b1a2ec4fd35e842ea30114b0096f4fcce6a8b943.tar.bz2
Fixed manpage installation.
Diffstat (limited to 'unix/Makefile.in')
-rw-r--r--unix/Makefile.in8
1 files changed, 4 insertions, 4 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in
index e21fdbf..6919033 100644
--- a/unix/Makefile.in
+++ b/unix/Makefile.in
@@ -5,7 +5,7 @@
# "autoconf" program (constructs like "@foo@" will get replaced in the
# actual Makefile.
#
-# RCS: @(#) $Id: Makefile.in,v 1.87.2.5 2004/11/18 02:08:59 rmax Exp $
+# RCS: @(#) $Id: Makefile.in,v 1.87.2.6 2004/11/18 10:28:23 rmax Exp $
# Current Tk version; used in various names.
@@ -641,17 +641,17 @@ install-doc:
fi; \
done;
@echo "Installing and cross-linking top-level (.1) docs";
- @cd $(TOP_DIR)/doc; for i in *.1; do \
+ @for i in $(TOP_DIR)/doc/*.1; do \
$(UNIX_DIR)/installManPage $(MAN_FLAGS) $$i $(MAN1_INSTALL_DIR); \
done
@echo "Installing and cross-linking C API (.3) docs";
- @cd $(TOP_DIR)/doc; for i in *.3; do \
+ @for i in $(SRC_DIR)/doc/*.3; do \
$(UNIX_DIR)/installManPage $(MAN_FLAGS) $$i $(MAN3_INSTALL_DIR); \
done
@echo "Installing and cross-linking command (.n) docs";
- @cd $(TOP_DIR)/doc; for i in *.n; do \
+ @for i in $(SRC_DIR)/doc/*.n; do \
$(UNIX_DIR)/installManPage $(MAN_FLAGS) $$i $(MANN_INSTALL_DIR); \
done