diff options
author | Jack Moffitt <jack@metajack.im> | 2014-05-23 10:58:11 -0600 |
---|---|---|
committer | Jack Moffitt <jack@metajack.im> | 2014-05-23 12:34:53 -0600 |
commit | 376d9578db4e1358f54edd9f7041d97e8978b997 (patch) | |
tree | 34c7799487b44d2d12260f0afcf7caef03fae284 /bld/linux.py | |
parent | c753f3ee05a25b2bb756c3b0c3131eac7ad58f1a (diff) | |
download | servo-376d9578db4e1358f54edd9f7041d97e8978b997.tar.gz servo-376d9578db4e1358f54edd9f7041d97e8978b997.zip |
Add LIBRARY_PATH env var to help the linux build slave.
Diffstat (limited to 'bld/linux.py')
-rw-r--r-- | bld/linux.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/bld/linux.py b/bld/linux.py index 8b7b99db4ee..e39ecb6314d 100644 --- a/bld/linux.py +++ b/bld/linux.py @@ -5,5 +5,7 @@ config = { 'mock_files': [('/home/servobld/.ssh', '/home/mock_mozilla/.ssh')], 'concurrency': 6, 'add_actions': ['setup-mock'], - 'env': {'PATH': '/tools/gcc-4.7.3-0moz1/bin:%(PATH)s'}, + 'env': {'PATH': '/tools/gcc-4.7.3-0moz1/bin:%(PATH)s', + 'LIBRARY_PATH': '/tools/gcc-4.7.3-0moz1/lib64', + 'LD_LIBRARY_PATH': '/tools/gcc-4.7.3-0moz1/lib64'}, } |