diff options
| author | Bartosz Golaszewski <brgl@bgdev.pl> | 2021-06-02 16:14:53 +0200 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2021-06-04 07:08:13 -0700 |
| commit | f3d670d9b3c2428c1ccd18ef71b7854db06954fd (patch) | |
| tree | dcbf4f80dcb2aca32b95684b8e6b623683f613da | |
| parent | a854c2cb774077e82663b88d5c4746d5e409f83c (diff) | |
| download | meta-openembedded-f3d670d9b3c2428c1ccd18ef71b7854db06954fd.tar.gz | |
libgpiod: coding style fixes
The recipe is getting bigger so try to keep a consistent coding style.
Use four spaces instead of tabs and use the common way of splitting
multi-line strings for minimum git diff lines at modification.
Signed-off-by: Bartosz Golaszewski <brgl@bgdev.pl>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
| -rw-r--r-- | meta-oe/recipes-support/libgpiod/libgpiod_1.6.3.bb | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/meta-oe/recipes-support/libgpiod/libgpiod_1.6.3.bb b/meta-oe/recipes-support/libgpiod/libgpiod_1.6.3.bb index d9c2517057..f51906a430 100644 --- a/meta-oe/recipes-support/libgpiod/libgpiod_1.6.3.bb +++ b/meta-oe/recipes-support/libgpiod/libgpiod_1.6.3.bb | |||
| @@ -4,8 +4,9 @@ AUTHOR = "Bartosz Golaszewski <bgolaszewski@baylibre.com>" | |||
| 4 | LICENSE = "LGPLv2.1+" | 4 | LICENSE = "LGPLv2.1+" |
| 5 | LIC_FILES_CHKSUM = "file://COPYING;md5=2caced0b25dfefd4c601d92bd15116de" | 5 | LIC_FILES_CHKSUM = "file://COPYING;md5=2caced0b25dfefd4c601d92bd15116de" |
| 6 | 6 | ||
| 7 | SRC_URI = "https://www.kernel.org/pub/software/libs/${BPN}/${BP}.tar.xz \ | 7 | SRC_URI = " \ |
| 8 | file://run-ptest \ | 8 | https://www.kernel.org/pub/software/libs/${BPN}/${BP}.tar.xz \ |
| 9 | file://run-ptest \ | ||
| 9 | " | 10 | " |
| 10 | 11 | ||
| 11 | SRC_URI[md5sum] = "28e79f6f70fee1da9079558d8b7b3736" | 12 | SRC_URI[md5sum] = "28e79f6f70fee1da9079558d8b7b3736" |
| @@ -39,6 +40,6 @@ RRECOMMENDS_${PN}-python += "${RRECOMMENDS_PYTHON}" | |||
| 39 | PACKAGECONFIG_append = " ${@bb.utils.contains('DISTRO_FEATURES', 'ptest', 'tests', '', d)}" | 40 | PACKAGECONFIG_append = " ${@bb.utils.contains('DISTRO_FEATURES', 'ptest', 'tests', '', d)}" |
| 40 | 41 | ||
| 41 | do_install_ptest() { | 42 | do_install_ptest() { |
| 42 | install -d ${D}${PTEST_PATH}/tests | 43 | install -d ${D}${PTEST_PATH}/tests |
| 43 | cp ${B}/tests/.libs/gpiod-test ${D}${PTEST_PATH}/tests/ | 44 | cp ${B}/tests/.libs/gpiod-test ${D}${PTEST_PATH}/tests/ |
| 44 | } | 45 | } |
