From 376d9578db4e1358f54edd9f7041d97e8978b997 Mon Sep 17 00:00:00 2001 From: Jack Moffitt Date: Fri, 23 May 2014 10:58:11 -0600 Subject: [PATCH] Add LIBRARY_PATH env var to help the linux build slave. --- bld/linux.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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'}, }