diff --git a/documentation/dev-manual/dev-manual-common-tasks.xml b/documentation/dev-manual/dev-manual-common-tasks.xml index 9bfad5ce24..97079e5aed 100644 --- a/documentation/dev-manual/dev-manual-common-tasks.xml +++ b/documentation/dev-manual/dev-manual-common-tasks.xml @@ -3816,32 +3816,30 @@ However, on rare occasions where you might want to use a layer but exclude parts that are causing problems, such as introducing a different version of a recipe, you can - use BBMASK to exclude the recipe. + use + BBMASK + to exclude the recipe. It is possible to filter or mask out .bb and .bbappend files. You can do this by providing an expression with the - BBMASK - variable. + BBMASK variable. Here is an example: BBMASK = "/meta-mymachine/recipes-maybe/" Here, all .bb and - .bbappend files in the directory that matches + .bbappend files in the directory that match the expression are ignored during the build process. - See the glossary entry for the - BBMASK - variable for more information. - The value you provide is passed to python's regular expression + The value you provide is passed to Python's regular expression compiler. The expression is compared against the full paths to the files. - For complete syntax information, see python's documentation at + For complete syntax information, see Python's documentation at .