# HG changeset patch # User Gustavo J. A. M. Carneiro # Date 1179484040 -3600 # Node ID ae4cbca077790e7bcb4a5cc9a52f13765b2eedd2 # Parent 1d12fb509a0dc52c2845df46636a00ba6b5541f7 WAF: the correct form of the rpath option should be -rpath, not --rpath; fixed. diff -r 1d12fb509a0d -r ae4cbca07779 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)