diff options
author | Michael Opdenacker <michael.opdenacker@bootlin.com> | 2023-08-10 15:13:25 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2023-08-30 15:54:59 +0100 |
commit | f004fa65c626d077c2bb9dccfb29c850e1049612 (patch) | |
tree | aa7497f1a0bff1330382457af6e1e009c13ed51f | |
parent | 0c8b5d0e697c344585062ac08b1c5e8ef4ce5758 (diff) | |
download | poky-f004fa65c626d077c2bb9dccfb29c850e1049612.tar.gz |
contributor-guide: remove obsolete pkg-config guidelines
They were coming from obsolete notes from the times
when people directly created or modified .pc files
from their recipes. Nobody should be doing that
any more and keep this can be confusing.
(From yocto-docs rev: 6b3bbf9507ac7014e95926d69383b585c5e19371)
Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | documentation/contributor-guide/recipe-style-guide.rst | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/documentation/contributor-guide/recipe-style-guide.rst b/documentation/contributor-guide/recipe-style-guide.rst index 35ffbc61ef..a0d513e8e9 100644 --- a/documentation/contributor-guide/recipe-style-guide.rst +++ b/documentation/contributor-guide/recipe-style-guide.rst | |||
@@ -255,8 +255,3 @@ Tips and Guidelines for Writing Recipes | |||
255 | - Use :term:`BBCLASSEXTEND` instead of creating separate recipes such as ``-native`` | 255 | - Use :term:`BBCLASSEXTEND` instead of creating separate recipes such as ``-native`` |
256 | and ``-nativesdk`` ones, whenever possible. This avoids having to maintain multiple | 256 | and ``-nativesdk`` ones, whenever possible. This avoids having to maintain multiple |
257 | recipe files at the same time. | 257 | recipe files at the same time. |
258 | |||
259 | - Avoid manually mangling ``pkg-config`` ``.pc`` files. | ||
260 | Recipes using ``pkg-config`` should use variables to ensure they are correctly | ||
261 | relocatable and not need manual path correction in the recipe. | ||
262 | |||