summaryrefslogtreecommitdiffstats
path: root/extras/local_rpath.py
diff options
context:
space:
mode:
Diffstat (limited to 'extras/local_rpath.py')
-rw-r--r--extras/local_rpath.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/extras/local_rpath.py b/extras/local_rpath.py
index b2507e1..e3923d9 100644
--- a/extras/local_rpath.py
+++ b/extras/local_rpath.py
@@ -2,18 +2,20 @@
# encoding: utf-8
# Thomas Nagy, 2011 (ita)
+import copy
from waflib.TaskGen import after_method, feature
@after_method('propagate_uselib_vars')
@feature('cprogram', 'cshlib', 'cxxprogram', 'cxxshlib', 'fcprogram', 'fcshlib')
def add_rpath_stuff(self):
- all = self.to_list(getattr(self, 'use', []))
+ all = copy.copy(self.to_list(getattr(self, 'use', [])))
while all:
name = all.pop()
try:
tg = self.bld.get_tgen_by_name(name)
except:
continue
- self.env.append_value('RPATH', tg.link_task.outputs[0].parent.abspath())
- all.extend(self.to_list(getattr(tg, 'use', [])))
+ if hasattr(tg, 'link_task'):
+ self.env.append_value('RPATH', tg.link_task.outputs[0].parent.abspath())
+ all.extend(self.to_list(getattr(tg, 'use', [])))