diff options
-rwxr-xr-x | scripts/contrib/documentation-audit.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/contrib/documentation-audit.sh b/scripts/contrib/documentation-audit.sh index a2c45865aa..2144aac936 100755 --- a/scripts/contrib/documentation-audit.sh +++ b/scripts/contrib/documentation-audit.sh | |||
@@ -30,9 +30,10 @@ echo " you'll get false positives. For example, LICENSE_FLAGS_WHITELIST = \"Com | |||
30 | 30 | ||
31 | for pkg in `bitbake -s | awk '{ print \$1 }'`; do | 31 | for pkg in `bitbake -s | awk '{ print \$1 }'`; do |
32 | if [[ "$pkg" == "Loading" || "$pkg" == "Loaded" || | 32 | if [[ "$pkg" == "Loading" || "$pkg" == "Loaded" || |
33 | "$pkg" == "Recipe" || | ||
33 | "$pkg" == "Parsing" || "$pkg" == "Package" || | 34 | "$pkg" == "Parsing" || "$pkg" == "Package" || |
34 | "$pkg" == "NOTE:" || "$pkg" == "WARNING:" || | 35 | "$pkg" == "NOTE:" || "$pkg" == "WARNING:" || |
35 | "$pkg" == "done." || "$pkg" == "============" ]] | 36 | "$pkg" == "done." || "$pkg" == "===========" ]] |
36 | then | 37 | then |
37 | # Skip initial bitbake output | 38 | # Skip initial bitbake output |
38 | continue | 39 | continue |