Skip to content

Commit 5018a36

Browse files
shr-projectherb-kuta-lge
authored andcommitted
bitbake: generate new overrides syntax for RDEPENDS
* generate new syntax for OE recipes to match: https://lists.openembedded.org/g/openembedded-architecture/message/1260 https://lists.openembedded.org/g/openembedded-architecture/message/1279 https://lists.openembedded.org/g/openembedded-architecture/message/1291 * this was already done with conversion script in meta-ros with: ros/meta-ros#902 but for new ROS Distribution releases we want to generate new syntax directly with superflore. * it's not conditional based on OE release series, because all currently supported versions (dunfell, hardknott, honister) do support new syntax (when latest bitbake revision from corresponding branch is being used). * fixes ros-infrastructure#284 Signed-off-by: Martin Jansa <[email protected]>
1 parent 8fce4a0 commit 5018a36

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

superflore/generators/bitbake/yocto_recipe.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -488,7 +488,7 @@ def get_recipe_text(self, distributor):
488488
ret += ' staged should this package appear in another\'s DEPENDS.\n'
489489
ret += 'DEPENDS += "${ROS_EXPORT_DEPENDS} '
490490
ret += '${ROS_BUILDTOOL_EXPORT_DEPENDS}"\n\n'
491-
ret += 'RDEPENDS_${PN} += "${ROS_EXEC_DEPENDS}"' + '\n\n'
491+
ret += 'RDEPENDS:${PN} += "${ROS_EXEC_DEPENDS}"' + '\n\n'
492492
# SRC_URI
493493
ret += '# matches with: ' + self.src_uri + '\n'
494494
ret += 'ROS_BRANCH ?= "branch=' + self.get_repo_branch_name() + '"\n'

0 commit comments

Comments
 (0)