diff options
author | Sergio Carlavilla Delgado <carlavilla@FreeBSD.org> | 2023-04-10 08:50:00 +0000 |
---|---|---|
committer | Sergio Carlavilla Delgado <carlavilla@FreeBSD.org> | 2023-04-10 08:50:00 +0000 |
commit | b31c144ef2ade65b730306a8b79a19b410c75cce (patch) | |
tree | b10ac4734e3952ff71a9b817f9411975530df0b9 | |
parent | cbd76fe50cda5fd06ec9f746c2932f162f7e03de (diff) | |
download | doc-b31c144ef2.tar.gz doc-b31c144ef2.zip |
Porters handbook - flavors: Fix italic render
PR: 262001
-rw-r--r-- | documentation/content/en/books/porters-handbook/flavors/_index.adoc | 33 |
1 files changed, 16 insertions, 17 deletions
diff --git a/documentation/content/en/books/porters-handbook/flavors/_index.adoc b/documentation/content/en/books/porters-handbook/flavors/_index.adoc index 46bace6d07..47d78b0dd4 100644 --- a/documentation/content/en/books/porters-handbook/flavors/_index.adoc +++ b/documentation/content/en/books/porters-handbook/flavors/_index.adoc @@ -164,31 +164,30 @@ To make the [.filename]#Makefile# easier to write, a few flavors helpers exist. This list of helpers will set their variable: -* `_flavor__PKGNAMEPREFIX` -* `_flavor__PKGNAMESUFFIX` -* `_flavor__PLIST` -* `_flavor__DESCR` +* `__flavor___PKGNAMEPREFIX` +* `__flavor___PKGNAMESUFFIX` +* `__flavor___PLIST` +* `__flavor___DESCR` This list of helpers will append to their variable: -* `_flavor__CONFLICTS` -* `_flavor__CONFLICTS_BUILD` -* `_flavor__CONFLICTS_INSTALL` -* `_flavor__PKG_DEPENDS` -* `_flavor__EXTRACT_DEPENDS` -* `_flavor__PATCH_DEPENDS` -* `_flavor__FETCH_DEPENDS` -* `_flavor__BUILD_DEPENDS` -* `_flavor__LIB_DEPENDS` -* `_flavor__RUN_DEPENDS` -* `_flavor__TEST_DEPENDS` - +* `__flavor___CONFLICTS` +* `__flavor___CONFLICTS_BUILD` +* `__flavor___CONFLICTS_INSTALL` +* `__flavor___PKG_DEPENDS` +* `__flavor___EXTRACT_DEPENDS` +* `__flavor___PATCH_DEPENDS` +* `__flavor___FETCH_DEPENDS` +* `__flavor___BUILD_DEPENDS` +* `__flavor___LIB_DEPENDS` +* `__flavor___RUN_DEPENDS` +* `__flavor___TEST_DEPENDS` [[flavors-helpers-ex1]] .Flavor Specific `PKGNAME` [example] ==== -As all packages must have a different package name, flavors must change theirs, using `_flavor__PKGNAMEPREFIX` and `_flavor__PKGNAMESUFFIX` makes this easy: +As all packages must have a different package name, flavors must change theirs, using `__flavor___PKGNAMEPREFIX` and `__flavor___PKGNAMESUFFIX` makes this easy: [.programlisting] .... |