diff options
author | John Wiegley <johnw@newartisans.com> | 2011-08-07 00:25:10 -0500 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2011-08-07 01:03:48 -0500 |
commit | f2ca0ee4744d2a77f91548b637588d94fe445a1d (patch) | |
tree | 024c8f627a6473e0e37606719aea8da93a18003f /acprep | |
parent | a468c9c00b95b85b6437a854b13085c337d81978 (diff) | |
download | fork-ledger-f2ca0ee4744d2a77f91548b637588d94fe445a1d.tar.gz fork-ledger-f2ca0ee4744d2a77f91548b637588d94fe445a1d.tar.bz2 fork-ledger-f2ca0ee4744d2a77f91548b637588d94fe445a1d.zip |
Fixed whitespace in acprep
Diffstat (limited to 'acprep')
-rwxr-xr-x | acprep | 26 |
1 files changed, 13 insertions, 13 deletions
@@ -338,7 +338,7 @@ class CommandLineApp(object): self.log.setLevel(logging.DEBUG) elif self.options.verbose: self.log.setLevel(logging.INFO) - + exit_code = 0 try: # We could just call main() and catch a TypeError, but that would @@ -928,7 +928,7 @@ class PrepareBuild(CommandLineApp): def setup_system_directories(self): boost_include = self.boost_info.include_directory() boost_library = self.boost_info.library_directory() - + if re.match('/opt/local', self.boost_info.home_path): self.log.debug("Setting Python home to /opt/local based on Boost's location") self.envvars['PYTHON_HOME'] = '/opt/local' @@ -1518,7 +1518,7 @@ class PrepareBuild(CommandLineApp): match = re.search('/opt/local/lib/(.+?)\.dylib', line) if not match: continue - + lib = match.group(0) base = basename(lib) @@ -1587,7 +1587,7 @@ class PrepareBuild(CommandLineApp): def phase_distcheck(self, *args): self.log.info('Executing phase: distcheck') - + self.configure_flavor('default', False) environ, conf_args = self.configure_environment() @@ -1621,7 +1621,7 @@ class PrepareBuild(CommandLineApp): '%s/' % self.source_dir, '%s/' % source_copy_dir) self.source_dir = source_copy_dir - + def phase_proof(self, *args): self.log.info('Executing phase: proof') @@ -1633,15 +1633,15 @@ class PrepareBuild(CommandLineApp): self.configure_flavor('opt', reset=False) self.log.info('=== Testing opt ===') self.phase_make('fullcheck') - + self.configure_flavor('gcov', reset=False) self.log.info('=== Testing gcov ===') self.phase_make('check') - + self.configure_flavor('debug', reset=False) self.log.info('=== Testing debug ===') self.phase_make('fullcheck') - + self.configure_flavor('default', reset=False) self.log.info('=== Testing default ===') self.phase_make('fullcheck') @@ -1654,14 +1654,14 @@ class PrepareBuild(CommandLineApp): self.log.info('Executing phase: makeall') self.configure_flavor('opt', reset) - + system_hh_gch = join(self.source_dir, 'src', 'system.hh.gch') if exists(system_hh_gch): os.remove(system_hh_gch) self.log.info('=== Building opt ===') self.phase_make(*args) - + self.configure_flavor('gcov', reset) system_hh_gch = join(self.source_dir, 'src', 'system.hh.gch') @@ -1670,7 +1670,7 @@ class PrepareBuild(CommandLineApp): self.log.info('=== Building gcov ===') self.phase_make(*args) - + system_hh_gch = join(self.source_dir, 'src', 'system.hh.gch') if exists(system_hh_gch): os.remove(system_hh_gch) @@ -1686,7 +1686,7 @@ class PrepareBuild(CommandLineApp): self.log.info('=== Building debug ===') self.phase_make(*args) - + self.configure_flavor('default', reset) ######################################################################### @@ -1696,7 +1696,7 @@ class PrepareBuild(CommandLineApp): def phase_help(self, *args): self.option_parser.print_help() - print """ + print """ Of the optional ARGS, the first is an optional build FLAVOR, with the default being 'debug': |