From cc0b32d9bc26f9345de3d89b540841bc2b8ad593 Mon Sep 17 00:00:00 2001 From: Alexis Hildebrandt Date: Mon, 12 Jan 2015 10:02:31 +0100 Subject: [acprep] Remove obsoleted submodule phase Signed-off-by: Alexis Hildebrandt --- acprep | 8 -------- 1 file changed, 8 deletions(-) (limited to 'acprep') 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() -- cgit v1.2.3 From 967a76193eb241ea99ae7d99d1f813590fa12ae3 Mon Sep 17 00:00:00 2001 From: Alexis Hildebrandt Date: Mon, 12 Jan 2015 11:26:23 +0100 Subject: [acprep]: Add libutfcpp-dev dependency [ci skip] Signed-off-by: Alexis Hildebrandt --- acprep | 2 ++ 1 file changed, 2 insertions(+) (limited to 'acprep') diff --git a/acprep b/acprep index f569e460..6c3cdb86 100755 --- a/acprep +++ b/acprep @@ -562,6 +562,7 @@ class PrepareBuild(CommandLineApp): 'libedit-dev', 'texinfo', 'lcov', + 'libutfcpp-dev', 'sloccount' ] + BoostInfo().dependencies('ubuntu-trusty') elif re.search('saucy', info): @@ -599,6 +600,7 @@ class PrepareBuild(CommandLineApp): 'libedit-dev', 'texinfo', 'lcov', + 'libutfcpp-dev', 'sloccount' ] + BoostInfo().dependencies('ubuntu-precise') else: -- cgit v1.2.3