Overview
Comment: | Fix source dir path for installing docs when not building in source root |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk | main |
Files: | files | file ages | folders |
SHA3-256: |
4056acea198d4f02ff0e24a40ac82bf8 |
User & Date: | [email protected] on 2025-01-02 08:38:44 |
Other Links: | branch diff | manifest | tags |
Context
2025-01-02
| ||
18:05 | Tag as TLS 1.8 release Leaf check-in: ca1a846290 user: bohagan tags: trunk, main | |
08:38 | Fix source dir path for installing docs when not building in source root check-in: 4056acea19 user: [email protected] tags: trunk, main | |
2025-01-01
| ||
23:32 | Moved debug script examples from docs to demos directory check-in: 65f827b5f9 user: bohagan tags: trunk, main | |
Changes
Modified Makefile.in
from [1e024f8c15]
to [e868746ffd].
︙ | ︙ | |||
258 259 260 261 262 263 264 | # Install documentation. Unix manpages should go in the $(mandir) # directory. #======================================================================== install-doc-html: make-docs-html @$(INSTALL_DATA_DIR) "$(DESTDIR)$(pkglibdir)/html" @echo "Installing HTML documentation in $(DESTDIR)$(pkglibdir)/html" | | | | 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 | # Install documentation. Unix manpages should go in the $(mandir) # directory. #======================================================================== install-doc-html: make-docs-html @$(INSTALL_DATA_DIR) "$(DESTDIR)$(pkglibdir)/html" @echo "Installing HTML documentation in $(DESTDIR)$(pkglibdir)/html" @list='$(srcdir)/doc/*.html'; for i in $$list; do \ if test -f $$i ; then \ echo "Installing $$i"; \ $(INSTALL_DATA) $$i "$(DESTDIR)$(pkglibdir)/html"; \ fi; \ done install-doc-n: make-docs-n @$(INSTALL_DATA_DIR) "$(DESTDIR)$(mandir)/mann" @echo "Installing nroff documentation in $(DESTDIR)$(mandir)/mann" @list='$(srcdir)/doc/*.n'; for i in $$list; do \ if test -f $$i ; then \ if test -f "$(DESTDIR)$(mandir)/mann/Tcl.n.gz" -o \ "$(DESTDIR)$(mandir)/mann/Tcl*.n.gz" ; then \ gzip -k $$i ; \ echo "Installing $$i.gz"; \ $(INSTALL_DATA) $$i.gz "$(DESTDIR)$(mandir)/mann" ; \ rm -f $$i.gz;\ |
︙ | ︙ |