WAF: the correct form of the rpath option should be -rpath, not --rpath; fixed.
authorGustavo J. A. M. Carneiro <gjc@inescporto.pt>
Fri, 18 May 2007 11:27:20 +0100
changeset 650 ae4cbca07779
parent 649 1d12fb509a0d
child 651 a59b1caeb7f1
WAF: the correct form of the rpath option should be -rpath, not --rpath; fixed.
src/wscript
--- a/src/wscript	Thu May 17 18:22:10 2007 +0100
+++ b/src/wscript	Fri May 18 11:27:20 2007 +0100
@@ -42,7 +42,7 @@
             if sys.platform == 'win32':
                 os.environ["PATH"] = ';'.join([os.environ["PATH"], node.abspath(env)])
             else:
-                env.append_value('RPATH', '-Wl,--rpath=%s' % (node.abspath(env),))
+                env.append_value('RPATH', '-Wl,-rpath=%s' % (node.abspath(env),))
     
     bld.add_subdirs(all_modules)