From: Niko Mauno Date: Sat, 21 Oct 2023 15:51:12 +0000 (+0000) Subject: package_rpm: Minor cosmetic and style fixes X-Git-Tag: yocto-5.2~4769 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3dea51ce6c91dc2b12a5520dede51ec6357e87d5;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git package_rpm: Minor cosmetic and style fixes Add the missing conventional space characters around bitbake variable assignment operators. Also fix a typo on a comment line. Signed-off-by: Niko Mauno Signed-off-by: Richard Purdie --- diff --git a/meta/classes-global/package_rpm.bbclass b/meta/classes-global/package_rpm.bbclass index 992446a0333..402fa5c4e81 100644 --- a/meta/classes-global/package_rpm.bbclass +++ b/meta/classes-global/package_rpm.bbclass @@ -8,12 +8,12 @@ inherit package IMAGE_PKGTYPE ?= "rpm" -RPM="rpm" -RPMBUILD="rpmbuild" +RPM = "rpm" +RPMBUILD = "rpmbuild" PKGWRITEDIRRPM = "${WORKDIR}/deploy-rpms" -# Maintaining the perfile dependencies has singificant overhead when writing the +# Maintaining the perfile dependencies has significant overhead when writing the # packages. When set, this value merges them for efficiency. MERGEPERFILEDEPS = "1"