git: 45da43895e - main - en/porters-handbook: Remove references to MANPREFIX

From: Muhammad Moinur Rahman <bofh_at_FreeBSD.org>
Date: Mon, 29 Jan 2024 22:56:02 UTC
The branch main has been updated by bofh:

URL: https://cgit.FreeBSD.org/doc/commit/?id=45da43895e27db2587b9d58e54c81627521bf83f

commit 45da43895e27db2587b9d58e54c81627521bf83f
Author:     Muhammad Moinur Rahman <bofh@FreeBSD.org>
AuthorDate: 2024-01-29 22:54:26 +0000
Commit:     Muhammad Moinur Rahman <bofh@FreeBSD.org>
CommitDate: 2024-01-29 22:55:44 +0000

    en/porters-handbook: Remove references to MANPREFIX
    
    Usage of MANPREFIX var has been removed from the ports tree.
    
    Approved by:    portmgr
---
 documentation/content/en/books/porters-handbook/special/_index.adoc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/documentation/content/en/books/porters-handbook/special/_index.adoc b/documentation/content/en/books/porters-handbook/special/_index.adoc
index fd06d589d1..f67704b5d5 100644
--- a/documentation/content/en/books/porters-handbook/special/_index.adoc
+++ b/documentation/content/en/books/porters-handbook/special/_index.adoc
@@ -106,7 +106,7 @@ It sets up defaults for ports that do not fetch, build, or install anything.
 ====
 
 Staging is enabled by prepending `STAGEDIR` to paths used in the `pre-install`, `do-install`, and `post-install` targets (see the examples through the book).
-Typically, this includes `PREFIX`, `ETCDIR`, `DATADIR`, `EXAMPLESDIR`, `MANPREFIX`, `DOCSDIR`, and so on.
+Typically, this includes `PREFIX`, `ETCDIR`, `DATADIR`, `EXAMPLESDIR`, `DOCSDIR`, and so on.
 Directories should be created as part of the `post-install` target.
 Avoid using absolute paths whenever possible.
 
@@ -378,7 +378,7 @@ The same goes for `install` and `INSTALL_TARGET`.
 === `configure` Script
 
 If the port uses the `configure` script to generate [.filename]#Makefile# from [.filename]#Makefile.in#, set `GNU_CONFIGURE=yes`.
-To give extra arguments to the `configure` script (the default argument is `--prefix=${PREFIX} --infodir=${PREFIX}/${INFO_PATH} --mandir=${MANPREFIX}/man --build=${CONFIGURE_TARGET}`), set those extra arguments in `CONFIGURE_ARGS`.
+To give extra arguments to the `configure` script (the default argument is `--prefix=${PREFIX} --infodir=${PREFIX}/${INFO_PATH} --mandir=${PREFIX}/man --build=${CONFIGURE_TARGET}`), set those extra arguments in `CONFIGURE_ARGS`.
 Extra environment variables can be passed using `CONFIGURE_ENV`.
 
 [[using-configure-variables]]