diff options
author | Jason Schonberg <schonm@gmail.com> | 2025-04-05 10:42:34 -0400 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2025-04-05 07:45:31 -0700 |
commit | a6ed1c867dc6b4d961f633c8ae8e2a668c8a278c (patch) | |
tree | f716b15625ddbb980926ecfb0de8698898f5cec6 | |
parent | f3d83ffa99af4685000a883442b6552bf630d48f (diff) | |
download | meta-openembedded-a6ed1c867dc6b4d961f633c8ae8e2a668c8a278c.tar.gz |
Fix warning : lack of whitespace around assignment
Signed-off-by: Jason Schonberg <schonm@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
4 files changed, 6 insertions, 6 deletions
diff --git a/meta-perl/conf/include/ptest-packagelists-meta-perl.inc b/meta-perl/conf/include/ptest-packagelists-meta-perl.inc index 9fc5e9675a..d081c2fdac 100644 --- a/meta-perl/conf/include/ptest-packagelists-meta-perl.inc +++ b/meta-perl/conf/include/ptest-packagelists-meta-perl.inc | |||
@@ -28,7 +28,7 @@ PTESTS_SLOW_META_PERL = "\ | |||
28 | libio-socket-ssl-perl \ | 28 | libio-socket-ssl-perl \ |
29 | " | 29 | " |
30 | 30 | ||
31 | PTESTS_PROBLEMS_META_PERL ="\ | 31 | PTESTS_PROBLEMS_META_PERL = "\ |
32 | libauthen-sasl-perl \ | 32 | libauthen-sasl-perl \ |
33 | libconfig-autoconf-perl \ | 33 | libconfig-autoconf-perl \ |
34 | libcrypt-openssl-guess-perl \ | 34 | libcrypt-openssl-guess-perl \ |
diff --git a/meta-perl/recipes-perl/libcompress/libcompress-raw-bzip2-perl_2.213.bb b/meta-perl/recipes-perl/libcompress/libcompress-raw-bzip2-perl_2.213.bb index 63706d8f74..5735bbba1e 100644 --- a/meta-perl/recipes-perl/libcompress/libcompress-raw-bzip2-perl_2.213.bb +++ b/meta-perl/recipes-perl/libcompress/libcompress-raw-bzip2-perl_2.213.bb | |||
@@ -17,8 +17,8 @@ S = "${WORKDIR}/Compress-Raw-Bzip2-${PV}" | |||
17 | 17 | ||
18 | inherit cpan | 18 | inherit cpan |
19 | 19 | ||
20 | export BUILD_BZIP2="0" | 20 | export BUILD_BZIP2 = "0" |
21 | export BZIP2_INCLUDE="-I${STAGING_DIR_HOST}${includedir}" | 21 | export BZIP2_INCLUDE = "-I${STAGING_DIR_HOST}${includedir}" |
22 | 22 | ||
23 | do_compile() { | 23 | do_compile() { |
24 | export LIBC="$(find ${STAGING_DIR_TARGET}/${base_libdir}/ -name 'libc-*.so')" | 24 | export LIBC="$(find ${STAGING_DIR_TARGET}/${base_libdir}/ -name 'libc-*.so')" |
diff --git a/meta-perl/recipes-perl/libcompress/libcompress-raw-lzma-perl_2.213.bb b/meta-perl/recipes-perl/libcompress/libcompress-raw-lzma-perl_2.213.bb index 62521dfe85..2bc42cb941 100644 --- a/meta-perl/recipes-perl/libcompress/libcompress-raw-lzma-perl_2.213.bb +++ b/meta-perl/recipes-perl/libcompress/libcompress-raw-lzma-perl_2.213.bb | |||
@@ -21,8 +21,8 @@ RDEPENDS:${PN} += "\ | |||
21 | perl-module-universal \ | 21 | perl-module-universal \ |
22 | " | 22 | " |
23 | 23 | ||
24 | export LIBLZMA_INCLUDE="-I${STAGING_DIR_HOST}${includedir}" | 24 | export LIBLZMA_INCLUDE = "-I${STAGING_DIR_HOST}${includedir}" |
25 | export LIBLZMA_LIB="-I${STAGING_DIR_HOST}${libdir}" | 25 | export LIBLZMA_LIB = "-I${STAGING_DIR_HOST}${libdir}" |
26 | 26 | ||
27 | do_compile() { | 27 | do_compile() { |
28 | export LIBC="$(find ${STAGING_DIR_TARGET}/${base_libdir}/ -name 'libc-*.so')" | 28 | export LIBC="$(find ${STAGING_DIR_TARGET}/${base_libdir}/ -name 'libc-*.so')" |
diff --git a/meta-perl/recipes-perl/libcompress/libcompress-raw-zlib-perl_2.213.bb b/meta-perl/recipes-perl/libcompress/libcompress-raw-zlib-perl_2.213.bb index b8afcc2074..205e6a548e 100644 --- a/meta-perl/recipes-perl/libcompress/libcompress-raw-zlib-perl_2.213.bb +++ b/meta-perl/recipes-perl/libcompress/libcompress-raw-zlib-perl_2.213.bb | |||
@@ -18,7 +18,7 @@ S = "${WORKDIR}/Compress-Raw-Zlib-${PV}" | |||
18 | 18 | ||
19 | inherit cpan | 19 | inherit cpan |
20 | 20 | ||
21 | export BUILD_ZLIB="0" | 21 | export BUILD_ZLIB = "0" |
22 | 22 | ||
23 | do_compile() { | 23 | do_compile() { |
24 | export LIBC="$(find ${STAGING_DIR_TARGET}/${base_libdir}/ -name 'libc-*.so')" | 24 | export LIBC="$(find ${STAGING_DIR_TARGET}/${base_libdir}/ -name 'libc-*.so')" |