diff options
author | John Wiegley <johnw@newartisans.com> | 2010-06-04 16:28:57 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2010-06-04 16:28:57 -0400 |
commit | 83c115d78afec45e1815bae7ec30b8e92309e679 (patch) | |
tree | 411b8f917091421f9835c75672b5e40813e48e11 /acprep | |
parent | b848ace76866188701a6a704a9531c4eeb2bc71a (diff) | |
download | fork-ledger-83c115d78afec45e1815bae7ec30b8e92309e679.tar.gz fork-ledger-83c115d78afec45e1815bae7ec30b8e92309e679.tar.bz2 fork-ledger-83c115d78afec45e1815bae7ec30b8e92309e679.zip |
Look for Boost in lib64, as well as lib
Diffstat (limited to 'acprep')
-rwxr-xr-x | acprep | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -124,7 +124,9 @@ class BoostInfo(object): return None def locate_boost(self): - for path in map(lambda x: join(x, 'lib'), search_prefixes): + lib64_dirs = map(lambda x: join(x, 'lib64'), search_prefixes) + lib_dirs = map(lambda x: join(x, 'lib'), search_prefixes) + for path in lib64_dirs + lib_dirs: self.log.info('Looking for Boost in %s...' % path) self.suffix = self.find_boost_in_directory(path) if self.suffix is not None: |