diff options
author | rmax <rmax> | 2004-11-18 13:22:46 (GMT) |
---|---|---|
committer | rmax <rmax> | 2004-11-18 13:22:46 (GMT) |
commit | 6eccc44406ee26caafcb1fc84878c401b8e9847b (patch) | |
tree | 5e76e1dc4f5921300b39b700ee426b890c2c020c /unix/Makefile.in | |
parent | 1b1920d3460f86d0c8c303446d121a41ddb8d8cf (diff) | |
download | tk-6eccc44406ee26caafcb1fc84878c401b8e9847b.zip tk-6eccc44406ee26caafcb1fc84878c401b8e9847b.tar.gz tk-6eccc44406ee26caafcb1fc84878c401b8e9847b.tar.bz2 |
generated configure and fixed manpage installaton
Diffstat (limited to 'unix/Makefile.in')
-rw-r--r-- | unix/Makefile.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in index cff43c0..18f9f8a 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.97 2004/11/18 00:43:19 rmax Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.98 2004/11/18 13:22:47 rmax Exp $ # Current Tk version; used in various names. @@ -657,17 +657,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 $(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 |