summaryrefslogtreecommitdiffstats
path: root/src/engine/SCons/Platform
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2004-04-03 07:16:45 (GMT)
committerSteven Knight <knight@baldmt.com>2004-04-03 07:16:45 (GMT)
commitfd66a638d425a722b4e84b57d7a40860d06c9d49 (patch)
tree5a9734b8a725f4eaf5a6fc9c9e72b96755c49768 /src/engine/SCons/Platform
parentba82e696b7132d668f3f2f981a16147b9cca8992 (diff)
downloadSCons-fd66a638d425a722b4e84b57d7a40860d06c9d49.zip
SCons-fd66a638d425a722b4e84b57d7a40860d06c9d49.tar.gz
SCons-fd66a638d425a722b4e84b57d7a40860d06c9d49.tar.bz2
Add RPATH support. (Chad Austin)
Diffstat (limited to 'src/engine/SCons/Platform')
-rw-r--r--src/engine/SCons/Platform/posix.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/engine/SCons/Platform/posix.py b/src/engine/SCons/Platform/posix.py
index bc121e6..f64d272 100644
--- a/src/engine/SCons/Platform/posix.py
+++ b/src/engine/SCons/Platform/posix.py
@@ -229,3 +229,6 @@ def generate(env):
env['SPAWN'] = spawn
env['SHELL'] = 'sh'
env['ESCAPE'] = escape
+
+ # This platform supports RPATH specifications.
+ env['__RPATH'] = '$_RPATH'