summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Wohlbier <wohlbier@users.noreply.github.com>2017-01-20 13:34:40 -0500
committerbecker33 <becker33@llnl.gov>2017-01-20 10:34:40 -0800
commit3e8106955b9077bd9b95837b63de4577d896c194 (patch)
tree6e3ad380586bb75931c51bc84c5484e4d9c7e636
parentadac3ebbf9fd764f27b7f63b85b3250226a08c0f (diff)
downloadspack-3e8106955b9077bd9b95837b63de4577d896c194.tar.gz
spack-3e8106955b9077bd9b95837b63de4577d896c194.tar.bz2
spack-3e8106955b9077bd9b95837b63de4577d896c194.tar.xz
spack-3e8106955b9077bd9b95837b63de4577d896c194.zip
For qt3, append to LD_LIBRARY_PATH, do not nuke it (#2862)
* libmonitor does not exist at http://libmonitor.googlecode.com/svn/trunk/ Change location to HPCToolkit version at github. Specify the hash corresponding to the 20130218 version. * When xcb is version 1.11, patch the configure file so it doesn't trip on pthread-stubs and xau. * Add os.getcwd()/lib to LD_LIBRARY_PATH, instead of nuking existing LD_LIBRARY_PATH.
-rw-r--r--var/spack/repos/builtin/packages/qt/package.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/qt/package.py b/var/spack/repos/builtin/packages/qt/package.py
index 95698018fa..447af5f1af 100644
--- a/var/spack/repos/builtin/packages/qt/package.py
+++ b/var/spack/repos/builtin/packages/qt/package.py
@@ -227,7 +227,7 @@ class Qt(Package):
@when('@3')
def configure(self):
# A user reported that this was necessary to link Qt3 on ubuntu
- os.environ['LD_LIBRARY_PATH'] = os.getcwd() + '/lib'
+ os.environ['LD_LIBRARY_PATH'] += os.pathsep + os.getcwd() + '/lib'
configure('-prefix', self.prefix,
'-v',
'-thread',