Example #1
0
 def make_install(self):
     """
     Install Node.
     """
     exit_code = call([shared.gmake(), "install"],
             stdout=self.logfile, stderr=self.logfile)
     if exit_code is not 0:
         raise BuildError("make install has failed")
Example #2
0
 def make(self):
     """
     Build Node.
     """
     exit_code = call([shared.gmake()], stdout=self.logfile,
             stderr=self.logfile)
     if exit_code is not 0:
         raise BuildError("make has failed")
Example #3
0
 def make_install(self):
     """
     Install Node.
     """
     exit_code = call([shared.gmake(), "install"],
                      stdout=self.logfile,
                      stderr=self.logfile)
     if exit_code is not 0:
         raise BuildError("make install has failed")
Example #4
0
 def make(self):
     """
     Build Node.
     """
     exit_code = call([shared.gmake()],
                      stdout=self.logfile,
                      stderr=self.logfile)
     if exit_code is not 0:
         raise BuildError("make has failed")