예제 #1
0
 def execute_makefile(self, path_to_makefile, extra_opts=[]):
     if isinstance(path_to_makefile, GnuMakefile):
         path = path_to_makefile.makefile_dir
     else:
         path = path_to_makefile
     log.execute("make %s in %s" % (" ".join(extra_opts), path))
     returncode, stdout, stderr = _run_subprocess("/scratchbox/login", ["make", "-C", str(path)] + extra_opts)
     self._handle_error(returncode, stdout, stderr, path.join("make"))
예제 #2
0
 def execute(self, executable, args=[], env=None):
     if isinstance(args, str):
         args = str(executable) + " " + args
         log.message("executing /scratchbox/login " + args)
     else:
         args = [str(executable)] + args
         log.message("executing /scratchbox/login " + " ".join(args))
     returncode, stdout, stderr = _run_subprocess("/scratchbox/login", args, env)
     return ExecutionResult(returncode, stdout, stderr)
예제 #3
0
파일: maemo.py 프로젝트: njues/Sypy
 def execute_makefile(self, path_to_makefile, extra_opts=[]):
     if isinstance(path_to_makefile, GnuMakefile):
         path = path_to_makefile.makefile_dir
     else:
         path = path_to_makefile
     log.execute('make %s in %s' % (" ".join(extra_opts), path))
     returncode, stdout, stderr = _run_subprocess(
         '/scratchbox/login', ['make', '-C', str(path)] + extra_opts)
     self._handle_error(returncode, stdout, stderr, path.join('make'))
예제 #4
0
파일: maemo.py 프로젝트: njues/Sypy
 def execute(self, executable, args=[], env=None):
     if isinstance(args, str):
         args = str(executable) + ' ' + args
         log.message('executing /scratchbox/login ' + args)
     else:
         args = [str(executable)] + args
         log.message('executing /scratchbox/login ' + ' '.join(args))
     returncode, stdout, stderr = _run_subprocess('/scratchbox/login', args,
                                                  env)
     return ExecutionResult(returncode, stdout, stderr)
예제 #5
0
 def _execute_c_compiler(self, cc, args, outname):
     log.execute("/scratchbox/login " + cc + " " + " ".join(args))
     args = [cc] + args
     returncode, stdout, stderr = _run_subprocess("/scratchbox/login", args)
     self._handle_error(returncode, stdout, stderr, outname)
예제 #6
0
파일: maemo.py 프로젝트: njues/Sypy
 def _execute_c_compiler(self, cc, args, outname):
     log.execute('/scratchbox/login ' + cc + ' ' + ' '.join(args))
     args = [cc] + args
     returncode, stdout, stderr = _run_subprocess('/scratchbox/login', args)
     self._handle_error(returncode, stdout, stderr, outname)