diff options
author | John Wiegley <johnw@newartisans.com> | 2011-12-29 13:39:28 -0800 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2011-12-29 13:39:28 -0800 |
commit | 6ef201bcacdc54fc1264603ed45623426ea0ffe6 (patch) | |
tree | c178d76b8c7c0e743d87fb4af08d2b96d28a9d2e | |
parent | b1c6ad0475983f99bbdf28e076cc3f64305c6295 (diff) | |
parent | 72251653ba1be7214d2fca5715f626ec3b1b7505 (diff) | |
download | fork-ledger-6ef201bcacdc54fc1264603ed45623426ea0ffe6.tar.gz fork-ledger-6ef201bcacdc54fc1264603ed45623426ea0ffe6.tar.bz2 fork-ledger-6ef201bcacdc54fc1264603ed45623426ea0ffe6.zip |
Merge pull request #52 from slackorama/fix-oneiric
Fix issue #51 - oneiric misspelled
-rwxr-xr-x | acprep | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -901,8 +901,8 @@ class PrepareBuild(CommandLineApp): 'lcov', 'sloccount' ] + self.boost_info.dependencies('ubuntu-hardy') - elif re.search('oeneric', info): - self.log.info('Looks like you are using APT on Ubuntu Oeneric') + elif re.search('oneiric', info): + self.log.info('Looks like you are using APT on Ubuntu Oneiric') packages = [ 'sudo', 'apt-get', 'install', 'build-essential', @@ -924,7 +924,7 @@ class PrepareBuild(CommandLineApp): 'texinfo', 'lcov', 'sloccount' - ] + self.boost_info.dependencies('ubuntu-oeneric') + ] + self.boost_info.dependencies('ubuntu-oneiric') else: self.log.info('I do not recognize your version of Ubuntu!') packages = None |