diff options
author | Bruce Ashfield <bruce.ashfield@gmail.com> | 2021-11-04 10:42:35 -0400 |
---|---|---|
committer | Bruce Ashfield <bruce.ashfield@gmail.com> | 2021-11-04 10:42:35 -0400 |
commit | 7fec18f265574b9b11a08795dc751d853af84099 (patch) | |
tree | 26481af9170af896a3f94856a5f4254fd12e4184 | |
parent | ffe9c1c11254274cb787c919c11b128a34ee3363 (diff) | |
download | meta-virtualization-7fec18f265574b9b11a08795dc751d853af84099.tar.gz |
criu: remove :append and += combination
bitbake is going to start warning about the combination of +=
and :append, which is rarely correct.
We can use use :append and add the space.
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
-rw-r--r-- | recipes-containers/criu/criu_git.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/recipes-containers/criu/criu_git.bb b/recipes-containers/criu/criu_git.bb index 2daf16c3..a97abd10 100644 --- a/recipes-containers/criu/criu_git.bb +++ b/recipes-containers/criu/criu_git.bb | |||
@@ -38,8 +38,8 @@ EXTRA_OEMAKE:arm += "ARCH=arm UNAME-M=${CRIU_BUILD_ARCH} WERROR=0" | |||
38 | EXTRA_OEMAKE:x86-64 += "ARCH=x86 WERROR=0" | 38 | EXTRA_OEMAKE:x86-64 += "ARCH=x86 WERROR=0" |
39 | EXTRA_OEMAKE:aarch64 += "ARCH=aarch64 WERROR=0" | 39 | EXTRA_OEMAKE:aarch64 += "ARCH=aarch64 WERROR=0" |
40 | 40 | ||
41 | EXTRA_OEMAKE:append += "SBINDIR=${sbindir} LIBDIR=${libdir} INCLUDEDIR=${includedir} PIEGEN=no" | 41 | EXTRA_OEMAKE:append = " SBINDIR=${sbindir} LIBDIR=${libdir} INCLUDEDIR=${includedir} PIEGEN=no" |
42 | EXTRA_OEMAKE:append += "LOGROTATEDIR=${sysconfdir} SYSTEMDUNITDIR=${systemd_unitdir}" | 42 | EXTRA_OEMAKE:append = " LOGROTATEDIR=${sysconfdir} SYSTEMDUNITDIR=${systemd_unitdir}" |
43 | 43 | ||
44 | CFLAGS += "-D__USE_GNU -D_GNU_SOURCE " | 44 | CFLAGS += "-D__USE_GNU -D_GNU_SOURCE " |
45 | 45 | ||