summaryrefslogtreecommitdiff
path: root/acprep
diff options
context:
space:
mode:
authorAlexis Hildebrandt <afh@surryhill.net>2015-01-12 10:02:31 +0100
committerAlexis Hildebrandt <afh@surryhill.net>2015-01-12 10:50:43 +0100
commitcc0b32d9bc26f9345de3d89b540841bc2b8ad593 (patch)
tree14925afef2cc955c6be6f845cc3929d2dafd30bd /acprep
parenta468fdca0eb380e6ea3d954d98b5995a45decbc9 (diff)
downloadfork-ledger-cc0b32d9bc26f9345de3d89b540841bc2b8ad593.tar.gz
fork-ledger-cc0b32d9bc26f9345de3d89b540841bc2b8ad593.tar.bz2
fork-ledger-cc0b32d9bc26f9345de3d89b540841bc2b8ad593.zip
[acprep] Remove obsoleted submodule phase
Signed-off-by: Alexis Hildebrandt <afh@surryhill.net>
Diffstat (limited to 'acprep')
-rwxr-xr-xacprep8
1 files changed, 0 insertions, 8 deletions
diff --git a/acprep b/acprep
index 9e661aad..f569e460 100755
--- a/acprep
+++ b/acprep
@@ -490,17 +490,10 @@ class PrepareBuild(CommandLineApp):
# Update local files with the latest information #
#########################################################################
- def phase_submodule(self, *args):
- self.log.info('Executing phase: submodule')
- if self.git_working_tree():
- self.execute('git', 'submodule', 'init')
- self.execute('git', 'submodule', 'update')
-
def phase_pull(self, *args):
self.log.info('Executing phase: pull')
if self.git_working_tree():
self.execute('git', 'pull')
- self.phase_submodule()
#########################################################################
# Automatic installation of build dependencies #
@@ -860,7 +853,6 @@ class PrepareBuild(CommandLineApp):
def phase_config(self, *args):
self.log.info('Executing phase: config')
- self.phase_submodule()
self.phase_configure(*args)
if self.should_clean:
self.phase_clean()