diff options
author | John Wiegley <johnw@newartisans.com> | 2011-07-12 22:31:14 -0500 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2011-07-12 22:31:14 -0500 |
commit | 51587d351f984661e801e35f7db4911cc22b642b (patch) | |
tree | 55489d67914d15821b448d82e63a78fce43e7e98 /acprep | |
parent | 168c111c624115decb3f8d071075f953aca4fe69 (diff) | |
download | fork-ledger-51587d351f984661e801e35f7db4911cc22b642b.tar.gz fork-ledger-51587d351f984661e801e35f7db4911cc22b642b.tar.bz2 fork-ledger-51587d351f984661e801e35f7db4911cc22b642b.zip |
Update to use Boost 1.47
Diffstat (limited to 'acprep')
-rwxr-xr-x | acprep | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -245,8 +245,8 @@ class CommandLineApp(object): force_exit = True # If true, always ends run() with sys.exit() log_handler = None darwin_gcc = False - boost_version = "1_46_1" - boost_major = "1_46_1" + boost_version = "1_47_0" + boost_major = "1_47" options = { 'debug': False, @@ -1252,7 +1252,7 @@ class PrepareBuild(CommandLineApp): home_path = '/usr/local/stow/boost_%s-%s' % \ (self.boost_version, self.boost_inc_ident), suffix = '-%s-sd-%s' % \ - (self.boost_lib_ident, self.boost_version), + (self.boost_lib_ident, self.boost_major), file_suffix = '.dylib', include_path = 'include/boost-%s' % self.boost_major): pass @@ -1260,7 +1260,7 @@ class PrepareBuild(CommandLineApp): home_path = '/usr/local/stow/boost_%s-%s' % \ (self.boost_version, self.boost_inc_ident), suffix = '-%s-d-%s' % \ - (self.boost_lib_ident, self.boost_version), + (self.boost_lib_ident, self.boost_major), file_suffix = '.dylib', include_path = 'include/boost-%s' % self.boost_major): pass @@ -1274,7 +1274,7 @@ class PrepareBuild(CommandLineApp): home_path = '/usr/local/stow/boost_%s-%s' % \ (self.boost_version, self.boost_inc_ident), suffix = '-%s-s-%s' % \ - (self.boost_lib_ident, self.boost_version), + (self.boost_lib_ident, self.boost_major), file_suffix = '.dylib', include_path = 'include/boost-%s' % self.boost_major): pass @@ -1282,7 +1282,7 @@ class PrepareBuild(CommandLineApp): home_path = '/usr/local/stow/boost_%s-%s' % \ (self.boost_version, self.boost_inc_ident), suffix = '-%s-%s' % \ - (self.boost_lib_ident, self.boost_version), + (self.boost_lib_ident, self.boost_major), file_suffix = '.dylib', include_path = 'include/boost-%s' % self.boost_major): pass |