diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-02-03 10:32:40 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-02-05 09:22:17 +0000 |
commit | 08858ff213cb692227ab7b9b3808ac9954864564 (patch) | |
tree | a5a8b4d750c625ff4c84e5879ce621b2f54d7c19 /meta/lib/oeqa/sdk | |
parent | 6840618f1a718d3aa8fd9e7e4fd3ffde01559e7d (diff) | |
download | poky-08858ff213cb692227ab7b9b3808ac9954864564.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.
(From OE-Core rev: 7918fe08d8e48f46cf2402afa66d35063eb72545)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa/sdk')
-rw-r--r-- | meta/lib/oeqa/sdk/utils/sdkbuildproject.py | 2 |
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): | |||
29 | #Change targetdir to project folder | 29 | #Change targetdir to project folder |
30 | self.targetdir = os.path.join(self.targetdir, self.fname) | 30 | self.targetdir = os.path.join(self.targetdir, self.fname) |
31 | 31 | ||
32 | def run_configure(self, configure_args='', extra_cmds=' gnu-configize; '): | 32 | def run_configure(self, configure_args='', extra_cmds=''): |
33 | return super(SDKBuildProject, self).run_configure(configure_args=(configure_args or '$CONFIGURE_FLAGS'), extra_cmds=extra_cmds) | 33 | return super(SDKBuildProject, self).run_configure(configure_args=(configure_args or '$CONFIGURE_FLAGS'), extra_cmds=extra_cmds) |
34 | 34 | ||
35 | def run_install(self, install_args=''): | 35 | def run_install(self, install_args=''): |