diff options
Diffstat (limited to 'meta/lib/oeqa/utils/targetbuild.py')
-rw-r--r-- | meta/lib/oeqa/utils/targetbuild.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/meta/lib/oeqa/utils/targetbuild.py b/meta/lib/oeqa/utils/targetbuild.py index 9d532e74d9..f850d78df1 100644 --- a/meta/lib/oeqa/utils/targetbuild.py +++ b/meta/lib/oeqa/utils/targetbuild.py | |||
@@ -55,8 +55,8 @@ class BuildProject(): | |||
55 | 55 | ||
56 | # The timeout parameter of target.run is set to 0 to make the ssh command | 56 | # The timeout parameter of target.run is set to 0 to make the ssh command |
57 | # run with no timeout. | 57 | # run with no timeout. |
58 | def run_configure(self, configure_args=''): | 58 | def run_configure(self, configure_args='', extra_cmds=''): |
59 | return self._run('cd %s; ./configure %s' % (self.targetdir, configure_args)) | 59 | return self._run('cd %s; %s ./configure %s' % (self.targetdir, extra_cmds, configure_args)) |
60 | 60 | ||
61 | def run_make(self, make_args=''): | 61 | def run_make(self, make_args=''): |
62 | return self._run('cd %s; make %s' % (self.targetdir, make_args)) | 62 | return self._run('cd %s; make %s' % (self.targetdir, make_args)) |
@@ -121,7 +121,7 @@ class SDKBuildProject(BuildProject): | |||
121 | self.targetdir = self.targetdir + self.fname | 121 | self.targetdir = self.targetdir + self.fname |
122 | 122 | ||
123 | def run_configure(self, configure_args=''): | 123 | def run_configure(self, configure_args=''): |
124 | return super(SDKBuildProject, self).run_configure(configure_args=(configure_args or '$CONFIGURE_FLAGS')) | 124 | return super(SDKBuildProject, self).run_configure(configure_args=(configure_args or '$CONFIGURE_FLAGS'), extra_cmds=' gnu-configize; ') |
125 | 125 | ||
126 | def run_install(self, install_args=''): | 126 | def run_install(self, install_args=''): |
127 | return super(SDKBuildProject, self).run_install(install_args=(install_args or "DESTDIR=%s/../install" % self.targetdir)) | 127 | return super(SDKBuildProject, self).run_install(install_args=(install_args or "DESTDIR=%s/../install" % self.targetdir)) |