Skip to content
This repository was archived by the owner on Aug 5, 2022. It is now read-only.

Commit 79bde35

Browse files
committed
append: fix _append rules where there is no whitespace after '"'
Signed-off-by: Tuomas Katila <tuomas.katila@intel.com>
1 parent 2d9446b commit 79bde35

7 files changed

Lines changed: 10 additions & 10 deletions

File tree

meta-refkit-computervision/recipes-image/images/refkit-image-computervision.bb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ REFKIT_IMAGE_COMPUTERVISION_EXTRA_FEATURES += "${@ '' if (d.getVar('IMAGE_MODE')
1515
# Example for customization in local.conf when building
1616
# refkit-image-computervision.bb:
1717
# IMAGE_BASENAME_pn-refkit-image-computervision = "my-refkit-image-reference"
18-
# REFKIT_IMAGE_COMPUTERVISION_EXTRA_INSTALL_append = "my-own-package"
19-
# REFKIT_IMAGE_COMPUTERVISION_EXTRA_FEATURES_append = "dev-pkgs"
18+
# REFKIT_IMAGE_COMPUTERVISION_EXTRA_INSTALL_append = " my-own-package"
19+
# REFKIT_IMAGE_COMPUTERVISION_EXTRA_FEATURES_append = " dev-pkgs"
2020

2121
inherit refkit-image

meta-refkit-core/conf/distro/include/refkit-config.inc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ BAD_RECOMMENDATIONS_append_refkit-config = " bluez5-client"
107107
# Prefer systemd way of creating getty@.service symlinks using
108108
# systemd-getty-generator (instead of the Yocto default
109109
# systemd-serialgetty that creates everything in do_install).
110-
PACKAGECONFIG_append_pn-systemd_refkit-config = "serial-getty-generator"
110+
PACKAGECONFIG_append_pn-systemd_refkit-config = " serial-getty-generator"
111111

112112
# OE-core 7355a3c4f665e066925ea6327ac72365ab1f2f39 added a PACKAGECONFIG
113113
# to configure cairo/python3-cairo and enabled it by default. It used to

meta-refkit-core/recipes-connectivity/avahi/avahi_%.bbappend

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ RRECOMMENDS_avahi-daemon_remove_libc-glibc_refkit-config = " libnss-mdns"
55
RRECOMMENDS_${PN}_remove_libc-glibc_refkit-config = " libnss-mdns"
66

77
# provide libdns_sd.so and dns_sd.h header
8-
EXTRA_OECONF_append_refkit-config = "--enable-compat-libdns_sd"
8+
EXTRA_OECONF_append_refkit-config = " --enable-compat-libdns_sd"
99

1010
FILES_${PN}_append_refkit-config = " \
1111
${libdir}/libdns_sd.* \

meta-refkit-core/recipes-connectivity/bluez5/bluez5_5%.bbappend

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ DEPENDS_remove_refkit-config = "libusb"
44
# split bluetoothctl into a subpackage
55
PACKAGES_prepend_refkit-config = "${PN}-client "
66
FILES_${PN}-client = "${@bb.utils.contains('PACKAGECONFIG', 'readline', '${bindir}/bluetoothctl', '', d)}"
7-
RRECOMMENDS_${PN}_append_refkit-config += "${PN}-client"
7+
RRECOMMENDS_${PN}_append_refkit-config = " ${PN}-client"

meta-refkit-core/recipes-images/images/refkit-image-common.bb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ REFKIT_IMAGE_EXTRA_INSTALL += "${REFKIT_IMAGE_COMMON_EXTRA_INSTALL}"
2626
#
2727
# Example for customization in local.conf when building refkit-image-common.bb:
2828
# IMAGE_BASENAME_pn-refkit-image-common = "my-refkit-image-reference"
29-
# REFKIT_IMAGE_COMMON_EXTRA_INSTALL_append = "my-own-package"
30-
# REFKIT_IMAGE_COMMON_EXTRA_FEATURES_append = "dev-pkgs"
29+
# REFKIT_IMAGE_COMMON_EXTRA_INSTALL_append = " my-own-package"
30+
# REFKIT_IMAGE_COMMON_EXTRA_FEATURES_append = " dev-pkgs"
3131

3232
inherit refkit-image

meta-refkit-gateway/recipes-image/images/refkit-image-gateway.bb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ REFKIT_IMAGE_GATEWAY_EXTRA_FEATURES_append = " iotivity nodejs-runtime bluetooth
1111
# Example for customization in local.conf when building
1212
# refkit-image-gateway.bb:
1313
# IMAGE_BASENAME_pn-refkit-image-gateway = "my-refkit-image-gateway"
14-
# REFKIT_IMAGE_GATEWAY_EXTRA_INSTALL_append = "my-own-package"
15-
# REFKIT_IMAGE_GATEWAY_EXTRA_FEATURES_append = "dev-pkgs"
14+
# REFKIT_IMAGE_GATEWAY_EXTRA_INSTALL_append = " my-own-package"
15+
# REFKIT_IMAGE_GATEWAY_EXTRA_FEATURES_append = " dev-pkgs"
1616

1717
inherit refkit-image

meta-refkit/lib/oeqa/selftest/cases/refkit_poky.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ def test_common_poky_config(self):
236236

237237
# We need an image that we can log into, so zap the root password.
238238
self.append_config('''
239-
REFKIT_IMAGE_EXTRA_FEATURES_append = "empty-root-password"
239+
REFKIT_IMAGE_EXTRA_FEATURES_append = " empty-root-password"
240240
''')
241241
bitbake('refkit-image-common')
242242
with runqemu('refkit-image-common',

0 commit comments

Comments
 (0)