Do not forget to call "make" in command of self._doBuild

This commit is contained in:
Damien Dupuis 2010-05-17 08:20:02 +00:00
parent 8a32b65a39
commit 3401114216
1 changed files with 3 additions and 1 deletions

View File

@ -216,7 +216,9 @@ class ProjectBuilder:
sys.stdout.flush ()
#command = ["make", "DESTDIR=%s" % self._installDir]
#command += self._makeArguments
command = self._makeArguments
#command = self._makeArguments
command = ["make"]
command += self._makeArguments
self._execute ( command, "Build failed" )
return