mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-04 14:39:54 +00:00
Fix missing leading whitespace with ':append'
Mitigate occurences where ':append' operator is used and leading whitespace character is obviously missing, risking inadvertent string concatenation. Signed-off-by: Niko Mauno <niko.mauno@vaisala.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
@@ -9,7 +9,7 @@ SRC_URI = "git://github.com/dbus-cxx/dbus-cxx.git;branch=master;protocol=https \
|
|||||||
file://0001-Include-typeinfo-for-typeid.patch \
|
file://0001-Include-typeinfo-for-typeid.patch \
|
||||||
file://0001-include-utility-header.patch \
|
file://0001-include-utility-header.patch \
|
||||||
"
|
"
|
||||||
SRC_URI:append:libc-musl = "file://fix_build_musl.patch"
|
SRC_URI:append:libc-musl = " file://fix_build_musl.patch"
|
||||||
SRCREV = "73532d6a5faae9c721c2cc9535b8ef32d4d18264"
|
SRCREV = "73532d6a5faae9c721c2cc9535b8ef32d4d18264"
|
||||||
|
|
||||||
DEPENDS = "\
|
DEPENDS = "\
|
||||||
|
|||||||
@@ -16,7 +16,7 @@ S = "${WORKDIR}/git"
|
|||||||
|
|
||||||
DEPENDS = "openssl"
|
DEPENDS = "openssl"
|
||||||
|
|
||||||
EXTRA_OEMAKE:append = "PREFIX=${prefix} LIBDIR=${libdir} USE_SHARED_LIB=1"
|
EXTRA_OEMAKE:append = " PREFIX=${prefix} LIBDIR=${libdir} USE_SHARED_LIB=1"
|
||||||
# We want to statically link the binary to libfsverity on native Windows
|
# We want to statically link the binary to libfsverity on native Windows
|
||||||
EXTRA_OEMAKE:remove:mingw32:class-nativesdk = "USE_SHARED_LIB=1"
|
EXTRA_OEMAKE:remove:mingw32:class-nativesdk = "USE_SHARED_LIB=1"
|
||||||
EXTRA_OEMAKE:remove:mingw32:class-native = "USE_SHARED_LIB=1"
|
EXTRA_OEMAKE:remove:mingw32:class-native = "USE_SHARED_LIB=1"
|
||||||
|
|||||||
@@ -33,7 +33,7 @@ PACKAGECONFIG[zlib] = "--with-zlib,--without-zlib,zlib"
|
|||||||
EXTRA_OECONF += "--enable-shared --enable-threadsafe-ssl=posix"
|
EXTRA_OECONF += "--enable-shared --enable-threadsafe-ssl=posix"
|
||||||
|
|
||||||
# Do not install into /usr/local
|
# Do not install into /usr/local
|
||||||
EXTRA_OEMAKE:append:class-native = "prefix=${prefix_native}"
|
EXTRA_OEMAKE:append:class-native = " prefix=${prefix_native}"
|
||||||
|
|
||||||
do_configure:prepend() {
|
do_configure:prepend() {
|
||||||
echo "${PV}" > ${S}/.version
|
echo "${PV}" > ${S}/.version
|
||||||
|
|||||||
Reference in New Issue
Block a user