Merge pull request #52 from slackorama/fix-oneiric
Fix issue #51 - oneiric misspelled
This commit is contained in:
commit
6ef201bcac
1 changed files with 3 additions and 3 deletions
6
acprep
6
acprep
|
|
@ -901,8 +901,8 @@ class PrepareBuild(CommandLineApp):
|
||||||
'lcov',
|
'lcov',
|
||||||
'sloccount'
|
'sloccount'
|
||||||
] + self.boost_info.dependencies('ubuntu-hardy')
|
] + self.boost_info.dependencies('ubuntu-hardy')
|
||||||
elif re.search('oeneric', info):
|
elif re.search('oneiric', info):
|
||||||
self.log.info('Looks like you are using APT on Ubuntu Oeneric')
|
self.log.info('Looks like you are using APT on Ubuntu Oneiric')
|
||||||
packages = [
|
packages = [
|
||||||
'sudo', 'apt-get', 'install',
|
'sudo', 'apt-get', 'install',
|
||||||
'build-essential',
|
'build-essential',
|
||||||
|
|
@ -924,7 +924,7 @@ class PrepareBuild(CommandLineApp):
|
||||||
'texinfo',
|
'texinfo',
|
||||||
'lcov',
|
'lcov',
|
||||||
'sloccount'
|
'sloccount'
|
||||||
] + self.boost_info.dependencies('ubuntu-oeneric')
|
] + self.boost_info.dependencies('ubuntu-oneiric')
|
||||||
else:
|
else:
|
||||||
self.log.info('I do not recognize your version of Ubuntu!')
|
self.log.info('I do not recognize your version of Ubuntu!')
|
||||||
packages = None
|
packages = None
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue