summaryrefslogtreecommitdiff
path: root/acprep
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2015-08-04 14:14:20 -0700
committerJohn Wiegley <johnw@newartisans.com>2015-08-04 14:14:20 -0700
commit947a46ebebd141e928a9fcebb584e34df4e210a7 (patch)
tree4cb81e0e1c08d182ac86df3a6caa4dcc8ea90c53 /acprep
parent614ba7d2136ab2b84abf74d7922a4f5d19b756cb (diff)
parent967a76193eb241ea99ae7d99d1f813590fa12ae3 (diff)
downloadfork-ledger-947a46ebebd141e928a9fcebb584e34df4e210a7.tar.gz
fork-ledger-947a46ebebd141e928a9fcebb584e34df4e210a7.tar.bz2
fork-ledger-947a46ebebd141e928a9fcebb584e34df4e210a7.zip
Merge pull request #369 from afh/pull/utfcpp_subtree
Replace utfcpp submodule with partial subtree
Diffstat (limited to 'acprep')
-rwxr-xr-xacprep10
1 files changed, 2 insertions, 8 deletions
diff --git a/acprep b/acprep
index 275f2c84..17436960 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 #
@@ -569,6 +562,7 @@ class PrepareBuild(CommandLineApp):
'libedit-dev',
'texinfo',
'lcov',
+ 'libutfcpp-dev',
'sloccount'
] + BoostInfo().dependencies('ubuntu-trusty')
elif re.search('saucy', info):
@@ -606,6 +600,7 @@ class PrepareBuild(CommandLineApp):
'libedit-dev',
'texinfo',
'lcov',
+ 'libutfcpp-dev',
'sloccount'
] + BoostInfo().dependencies('ubuntu-precise')
else:
@@ -885,7 +880,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()