diff options
author | Mark Hatle <mark.hatle@kernel.crashing.org> | 2020-03-24 11:50:43 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-03-25 10:02:49 +0000 |
commit | 0019f63da9c9d590df22a00a4261e15416995bc3 (patch) | |
tree | c305abb9a3c98bafa99f11e44c1116c479d97ff6 /meta | |
parent | f17f89e2f4ad0ef56fc2ed5efaf99b52e01c9c47 (diff) | |
download | poky-0019f63da9c9d590df22a00a4261e15416995bc3.tar.gz |
qemu.inc: Always disable compile time git updating
If the SRC_URI is switched to be git based, QEMU will automatically update
itself at compile time for select git submodules. This by passes the
bitbake git fetcher. These modules are always present in the release
tarballs, so only are problematic when used with git based SRC_URIs.
These switches will have no effect on a tarball based SRC_URI.
(From OE-Core rev: 53b38a89fc7ccbceefd1a3a79bd376d9f6419565)
Signed-off-by: Mark Hatle <mark.hatle@kernel.crashing.org>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-devtools/qemu/qemu.inc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/recipes-devtools/qemu/qemu.inc b/meta/recipes-devtools/qemu/qemu.inc index f62220a51d..972767615d 100644 --- a/meta/recipes-devtools/qemu/qemu.inc +++ b/meta/recipes-devtools/qemu/qemu.inc | |||
@@ -83,6 +83,8 @@ EXTRA_OECONF = " \ | |||
83 | --disable-strip \ | 83 | --disable-strip \ |
84 | --disable-werror \ | 84 | --disable-werror \ |
85 | --extra-cflags='${CFLAGS}' \ | 85 | --extra-cflags='${CFLAGS}' \ |
86 | --with-git=/bin/false \ | ||
87 | --disable-git-update \ | ||
86 | ${PACKAGECONFIG_CONFARGS} \ | 88 | ${PACKAGECONFIG_CONFARGS} \ |
87 | " | 89 | " |
88 | 90 | ||