diff options
Diffstat (limited to 'meta/lib/oeqa/utils/buildproject.py')
-rw-r--r-- | meta/lib/oeqa/utils/buildproject.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/utils/buildproject.py b/meta/lib/oeqa/utils/buildproject.py index b3c487b6c6..fc8879cfb8 100644 --- a/meta/lib/oeqa/utils/buildproject.py +++ b/meta/lib/oeqa/utils/buildproject.py | |||
@@ -39,7 +39,7 @@ class BuildProject(metaclass=ABCMeta): | |||
39 | # The timeout parameter of target.run is set to 0 to make the ssh command | 39 | # The timeout parameter of target.run is set to 0 to make the ssh command |
40 | # run with no timeout. | 40 | # run with no timeout. |
41 | def run_configure(self, configure_args='', extra_cmds=''): | 41 | def run_configure(self, configure_args='', extra_cmds=''): |
42 | return self._run('cd %s; %s ./configure %s' % (self.targetdir, extra_cmds, configure_args)) | 42 | return self._run('cd %s; gnu-configize; %s ./configure %s' % (self.targetdir, extra_cmds, configure_args)) |
43 | 43 | ||
44 | def run_make(self, make_args=''): | 44 | def run_make(self, make_args=''): |
45 | return self._run('cd %s; make %s' % (self.targetdir, make_args)) | 45 | return self._run('cd %s; make %s' % (self.targetdir, make_args)) |