mirror of
https://git.yoctoproject.org/poky
synced 2026-05-08 17:19:20 +00:00
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>
This commit is contained in:
@@ -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=''):
|
||||
|
||||
@@ -39,7 +39,7 @@ class BuildProject(metaclass=ABCMeta):
|
||||
# The timeout parameter of target.run is set to 0 to make the ssh command
|
||||
# run with no timeout.
|
||||
def run_configure(self, configure_args='', extra_cmds=''):
|
||||
return self._run('cd %s; %s ./configure %s' % (self.targetdir, extra_cmds, configure_args))
|
||||
return self._run('cd %s; gnu-configize; %s ./configure %s' % (self.targetdir, extra_cmds, configure_args))
|
||||
|
||||
def run_make(self, make_args=''):
|
||||
return self._run('cd %s; make %s' % (self.targetdir, make_args))
|
||||
|
||||
Reference in New Issue
Block a user