diff options
author | Jan-Simon Möller <jsmoeller@linuxfoundation.org> | 2017-01-07 15:50:29 +0100 |
---|---|---|
committer | Jan-Simon Möller <jsmoeller@linuxfoundation.org> | 2017-01-07 16:24:48 +0100 |
commit | 35ce224f61855b5184a6fd4428c92d9975571953 (patch) | |
tree | fe2de2a90ab166e679475e78c310569e91981d74 | |
parent | fb57dd647f577b5df40380c6f3996443bbe0cf8b (diff) |
Test - mitigation of tar-native issue
This changeset removes tar-native from ASSUME_PROVIDED in an attempt
to mitigate the tar-native extraction issue that we see on the jenkins slaves.
Is I understand the race-window, tar-native is just being extracted and already
in a preferred PATH while being extracted. The right fix would likely be
to extract first, then change PATH after the file is in place. A way to
do this is being researched.
Change-Id: I0b138a1bd27406e719ab0d711cf542a812fb8460
Signed-off-by: Jan-Simon Möller <jsmoeller@linuxfoundation.org>
-rw-r--r-- | templates/base/00_local.conf.agl.inc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/templates/base/00_local.conf.agl.inc b/templates/base/00_local.conf.agl.inc index b0ed06be4..867139b8b 100644 --- a/templates/base/00_local.conf.agl.inc +++ b/templates/base/00_local.conf.agl.inc @@ -16,3 +16,5 @@ MODULE_TARBALL_DEPLOY ?= "0" # Comment out below if want to use QtWebkit PACKAGECONFIG_remove_pn-qtquick1 = "webkit" + +ASSUME_PROVIDED_remove = "tar-native" |