aboutsummaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/sdk/utils/sdkbuildproject.py
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2017-02-03 10:32:40 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-02-05 09:20:22 +0000
commit7918fe08d8e48f46cf2402afa66d35063eb72545 (patch)
tree0f4323b9012a0447ce4b55b59d897c3efee6679b /meta/lib/oeqa/sdk/utils/sdkbuildproject.py
parentb6352ff001c29f0bff10c18879b92c5618ec645c (diff)
downloadopenembedded-core-contrib-7918fe08d8e48f46cf2402afa66d35063eb72545.tar.gz
oeqa/buildproject: Run gnu-configize by default
The runtime oeqa tests were failing in the on-target case, only for aarch64. This was because an old config.sub was being used. Similar to the SDK testing, call gnu-configize in the on-target case too to resolve the failing tests. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa/sdk/utils/sdkbuildproject.py')
-rw-r--r--meta/lib/oeqa/sdk/utils/sdkbuildproject.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/sdk/utils/sdkbuildproject.py b/meta/lib/oeqa/sdk/utils/sdkbuildproject.py
index 4e4e5077c0..4e251142d7 100644
--- a/meta/lib/oeqa/sdk/utils/sdkbuildproject.py
+++ b/meta/lib/oeqa/sdk/utils/sdkbuildproject.py
@@ -29,7 +29,7 @@ class SDKBuildProject(BuildProject):
#Change targetdir to project folder
self.targetdir = os.path.join(self.targetdir, self.fname)
- def run_configure(self, configure_args='', extra_cmds=' gnu-configize; '):
+ def run_configure(self, configure_args='', extra_cmds=''):
return super(SDKBuildProject, self).run_configure(configure_args=(configure_args or '$CONFIGURE_FLAGS'), extra_cmds=extra_cmds)
def run_install(self, install_args=''):