summaryrefslogtreecommitdiffstats
path: root/unix/Makefile.in
diff options
context:
space:
mode:
authorrmax <rmax@noemail.net>2004-11-18 10:21:55 (GMT)
committerrmax <rmax@noemail.net>2004-11-18 10:21:55 (GMT)
commit7a1776b411c8b2c9360548dc0b5a9fbde193a52c (patch)
treed5e0a50a1ab40362c070aa5a6d4c5234ccfaaaf0 /unix/Makefile.in
parent718ae1b01ef816f1d619ee3aa29ff679d0970052 (diff)
downloadtcl-7a1776b411c8b2c9360548dc0b5a9fbde193a52c.zip
tcl-7a1776b411c8b2c9360548dc0b5a9fbde193a52c.tar.gz
tcl-7a1776b411c8b2c9360548dc0b5a9fbde193a52c.tar.bz2
Fixed manpage installation.
FossilOrigin-Name: d0f59fa5636fd6c7f1bbd665bfd61db622f84cad
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 6c1485a..8d0b64e 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.121.2.8 2004/11/18 02:07:09 rmax Exp $
+# RCS: @(#) $Id: Makefile.in,v 1.121.2.9 2004/11/18 10:21:55 rmax Exp $
VERSION = @TCL_VERSION@
MAJOR_VERSION = @TCL_MAJOR_VERSION@
@@ -695,17 +695,17 @@ install-doc: 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 $(TOP_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 $(TOP_DIR)/doc/*.n; do \
$(UNIX_DIR)/installManPage $(MAN_FLAGS) $$i $(MANN_INSTALL_DIR); \
done