aboutsummaryrefslogtreecommitdiff
path: root/documentation/content/en
diff options
context:
space:
mode:
authorMuhammad Moinur Rahman <bofh@FreeBSD.org>2024-01-29 22:54:26 +0000
committerMuhammad Moinur Rahman <bofh@FreeBSD.org>2024-01-29 22:55:44 +0000
commit45da43895e27db2587b9d58e54c81627521bf83f (patch)
treedfa7cf57ea804caaf8b8fc1f5f0b0f7e5d5e6718 /documentation/content/en
parent888411da8c0efc5814a43c6b074757ac5b0b820d (diff)
downloaddoc-45da43895e27db2587b9d58e54c81627521bf83f.tar.gz
doc-45da43895e27db2587b9d58e54c81627521bf83f.zip
Diffstat (limited to 'documentation/content/en')
-rw-r--r--documentation/content/en/books/porters-handbook/special/_index.adoc4
1 files 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]]