summaryrefslogtreecommitdiffstats
path: root/src/engine/SCons/Platform/posix.py
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)
commit71ecea9cafa95f5cc67fd37aa05733ae1547a186 (patch)
tree5a9734b8a725f4eaf5a6fc9c9e72b96755c49768 /src/engine/SCons/Platform/posix.py
parent2c09df381e3fa50759e4d74d8c2a8608b250cd3c (diff)
downloadSCons-71ecea9cafa95f5cc67fd37aa05733ae1547a186.zip
SCons-71ecea9cafa95f5cc67fd37aa05733ae1547a186.tar.gz
SCons-71ecea9cafa95f5cc67fd37aa05733ae1547a186.tar.bz2
Add RPATH support. (Chad Austin)
Diffstat (limited to 'src/engine/SCons/Platform/posix.py')
-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'