diff options
author | John Wiegley <johnw@newartisans.com> | 2009-10-29 04:31:32 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-10-29 04:31:32 -0400 |
commit | 2af8b0555a3fcf3618bc1aca178e7d6b8f8d80ca (patch) | |
tree | 6b2fc53a597b9e2e59dc9bb786d24581c3d8afc7 /acprep | |
parent | b8b48abdc01b778bb52c9b80cd2f36e0300e012c (diff) | |
download | fork-ledger-2af8b0555a3fcf3618bc1aca178e7d6b8f8d80ca.tar.gz fork-ledger-2af8b0555a3fcf3618bc1aca178e7d6b8f8d80ca.tar.bz2 fork-ledger-2af8b0555a3fcf3618bc1aca178e7d6b8f8d80ca.zip |
Removed the "all" phase from acprep
Diffstat (limited to 'acprep')
-rwxr-xr-x | acprep | 7 |
1 files changed, 2 insertions, 5 deletions
@@ -1334,6 +1334,8 @@ class PrepareBuild(CommandLineApp): def phase_proof(self, *args): self.log.debug('Executing phase: proof') + self.phase_makeall(*args) + self.log.info('=== Copying source tree ===') self.phase_rsync() @@ -1403,11 +1405,6 @@ class PrepareBuild(CommandLineApp): self.configure_flavor('default', False) - def phase_do_all(self, *args): - self.log.debug('Executing phase: do_all') - self.phase_makeall(*args) - self.phase_proof(*args) - ######################################################################### # Help # ######################################################################### |