summaryrefslogtreecommitdiffstats
path: root/meta/classes-global
diff options
context:
space:
mode:
authorNiko Mauno <niko.mauno@vaisala.com>2023-10-21 15:51:12 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-10-26 15:29:35 +0100
commitacf1c821b65433320a441375c798aca04aec7b0a (patch)
tree777be7d0dc0ac2b9fe7bcf79eb4f8bb8f3575272 /meta/classes-global
parent91352a99f716d48e3d51af3d80eb1111b34384d1 (diff)
downloadpoky-acf1c821b65433320a441375c798aca04aec7b0a.tar.gz
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. (From OE-Core rev: 3dea51ce6c91dc2b12a5520dede51ec6357e87d5) Signed-off-by: Niko Mauno <niko.mauno@vaisala.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes-global')
-rw-r--r--meta/classes-global/package_rpm.bbclass6
1 files changed, 3 insertions, 3 deletions
diff --git a/meta/classes-global/package_rpm.bbclass b/meta/classes-global/package_rpm.bbclass
index 992446a033..402fa5c4e8 100644
--- a/meta/classes-global/package_rpm.bbclass
+++ b/meta/classes-global/package_rpm.bbclass
@@ -8,12 +8,12 @@ inherit package
8 8
9IMAGE_PKGTYPE ?= "rpm" 9IMAGE_PKGTYPE ?= "rpm"
10 10
11RPM="rpm" 11RPM = "rpm"
12RPMBUILD="rpmbuild" 12RPMBUILD = "rpmbuild"
13 13
14PKGWRITEDIRRPM = "${WORKDIR}/deploy-rpms" 14PKGWRITEDIRRPM = "${WORKDIR}/deploy-rpms"
15 15
16# Maintaining the perfile dependencies has singificant overhead when writing the 16# Maintaining the perfile dependencies has significant overhead when writing the
17# packages. When set, this value merges them for efficiency. 17# packages. When set, this value merges them for efficiency.
18MERGEPERFILEDEPS = "1" 18MERGEPERFILEDEPS = "1"
19 19