Fix space-around-equal QA warnings#209
Merged
Merged
Conversation
Add whitespace around assignment operators in recipe .inc files to clear the Yocto/OpenEmbedded space-around-equal QA warnings. These were log noise only and did not affect builds. Fixes Azure#207
|
Looks good to me. Still, I'll run a test build in the name of paranoia. Will take a couple of hours. |
|
As expected, clean build with no warnings. |
damonbarry
approved these changes
Jun 12, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Fixes #207.
Adds whitespace around the assignment operators in the recipe
.incfiles so the Yocto / OpenEmbedded space-around-equal QA check no longer warns when buildingmeta-iotedge.These warnings were log noise only and did not affect builds, but newer bitbake/OpenEmbedded surfaces them and other layers keep their recipes clean of them.
Changes
19 assignment lines across 5 files:
recipes-core/aziot-edged/aziot-edged.increcipes-core/aziot-keys/aziot-keys.increcipes-core/aziotctl/aziotctl.increcipes-core/aziotd/aziotd.increcipes-core/iotedge/iotedge.incTwo patterns fixed:
export VAR="..."toexport VAR = "...", andSRC_URI+= "..."toSRC_URI += "...". No functional change.Validation
bitbake -p(parse only) in the Scarthgap devcontainer parses all recipes with 0 errors after the change.