diff options
| author | Harald Eilertsen <haraldei@freebsdfoundation.org> | 2025-07-27 10:47:13 +0000 |
|---|---|---|
| committer | Sergio Carlavilla Delgado <carlavilla@FreeBSD.org> | 2025-07-27 10:47:13 +0000 |
| commit | 41d8ee28f24de8a4442aee3018fab1e42fbc8a39 (patch) | |
| tree | dc26cf4c990f2f8aac4d6bf683fd0e6fb1808706 | |
| parent | 27d743b2a71df6917bb549b28c4a85928562b864 (diff) | |
Porters handbook - Makefiles: Escape a + sign
Pull Request: https://github.com/freebsd/freebsd-doc/pull/499
| -rw-r--r-- | documentation/content/en/books/porters-handbook/makefiles/_index.adoc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/documentation/content/en/books/porters-handbook/makefiles/_index.adoc b/documentation/content/en/books/porters-handbook/makefiles/_index.adoc index 243328727a..7b76b21ab1 100644 --- a/documentation/content/en/books/porters-handbook/makefiles/_index.adoc +++ b/documentation/content/en/books/porters-handbook/makefiles/_index.adoc @@ -2275,7 +2275,7 @@ DISTFILES= source1.tar.gz:source1 \ Okay, so the previous example did not reflect the new port's needs? In this section we will explain in detail how the fine grained fetching mechanism `MASTER_SITES:n` works and how it can be used. -. Elements can be postfixed with `:__n__` where _n_ is `[^:,]+`, that is, _n_ could conceptually be any alphanumeric string but we will limit it to `[a-zA-Z_][0-9a-zA-Z_]+` for now. +. Elements can be postfixed with `:__n__` where _n_ is `[^:,]\+`, that is, _n_ could conceptually be any alphanumeric string but we will limit it to `[a-zA-Z_][0-9a-zA-Z_]+` for now. + Moreover, string matching is case sensitive; that is, `n` is different from `N`. + |
