From 3401114216935a21a25097336386caf86b1a4293 Mon Sep 17 00:00:00 2001 From: Damien Dupuis Date: Mon, 17 May 2010 08:20:02 +0000 Subject: [PATCH] Do not forget to call "make" in command of self._doBuild --- bootstrap/buildCoriolis.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/bootstrap/buildCoriolis.py b/bootstrap/buildCoriolis.py index 5b45c34f..c8d6bc60 100755 --- a/bootstrap/buildCoriolis.py +++ b/bootstrap/buildCoriolis.py @@ -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