summaryrefslogtreecommitdiff
path: root/acprep
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2010-06-04 16:28:57 -0400
committerJohn Wiegley <johnw@newartisans.com>2010-06-04 16:28:57 -0400
commit83c115d78afec45e1815bae7ec30b8e92309e679 (patch)
tree411b8f917091421f9835c75672b5e40813e48e11 /acprep
parentb848ace76866188701a6a704a9531c4eeb2bc71a (diff)
downloadfork-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-xacprep4
1 files changed, 3 insertions, 1 deletions
diff --git a/acprep b/acprep
index 87e2cd64..f48649eb 100755
--- a/acprep
+++ b/acprep
@@ -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: