<pre style='margin:0'>
Ken (kencu) pushed a commit to branch master
in repository macports-ports.
</pre>
<p><a href="https://github.com/macports/macports-ports/commit/fe10b2ff72776622c58214d00e243b131d75a469">https://github.com/macports/macports-ports/commit/fe10b2ff72776622c58214d00e243b131d75a469</a></p>
<pre style="white-space: pre; background: #F8F8F8">The following commit(s) were added to refs/heads/master by this push:
<span style='display:block; white-space:pre;color:#404040;'> new fe10b2f clang-3.9: fix install names
</span>fe10b2f is described below
<span style='display:block; white-space:pre;color:#808000;'>commit fe10b2ff72776622c58214d00e243b131d75a469
</span>Author: Ken Cunningham <kencu@macports.org>
AuthorDate: Sun Nov 26 15:35:45 2017 -0800
<span style='display:block; white-space:pre;color:#404040;'> clang-3.9: fix install names
</span><span style='display:block; white-space:pre;color:#404040;'>
</span><span style='display:block; white-space:pre;color:#404040;'> clang installs some libraries in places other than
</span><span style='display:block; white-space:pre;color:#404040;'> ${cmake.install_prefix}/lib so we need to allow the
</span><span style='display:block; white-space:pre;color:#404040;'> clang internal rpath mechanisms to set this
</span><span style='display:block; white-space:pre;color:#404040;'>
</span><span style='display:block; white-space:pre;color:#404040;'> closes: https://trac.macports.org/ticket/53299
</span>---
lang/llvm-3.9/Portfile | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
<span style='display:block; white-space:pre;color:#808080;'>diff --git a/lang/llvm-3.9/Portfile b/lang/llvm-3.9/Portfile
</span><span style='display:block; white-space:pre;color:#808080;'>index 13a367f..263d20f 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/lang/llvm-3.9/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/lang/llvm-3.9/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -11,7 +11,7 @@ set llvm_version 3.9
</span> set llvm_version_no_dot 39
name llvm-${llvm_version}
revision 5
<span style='display:block; white-space:pre;background:#ffe0e0;'>-subport clang-${llvm_version} { revision 7 }
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+subport clang-${llvm_version} { revision 8 }
</span> set suffix mp-${llvm_version}
set sub_prefix ${prefix}/libexec/llvm-${llvm_version}
dist_subdir llvm
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -176,13 +176,12 @@ cmake.install_prefix ${sub_prefix}
</span> # https://github.com/macports/macports-ports/pull/103
# Also see:
# https://llvm.org/bugs/show_bug.cgi?id=31425
<span style='display:block; white-space:pre;background:#e0ffe0;'>+# https://trac.macports.org/ticket/53299
</span> configure.args-delete \
-DCMAKE_INSTALL_NAME_DIR=${prefix}/lib \
-DCMAKE_INSTALL_RPATH=${prefix}/lib \
-DCMAKE_SYSTEM_PREFIX_PATH="${prefix}\;/usr"
configure.args-append \
<span style='display:block; white-space:pre;background:#ffe0e0;'>- -DCMAKE_INSTALL_NAME_DIR=${cmake.install_prefix}/lib \
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>- -DCMAKE_INSTALL_RPATH=${cmake.install_prefix}/lib \
</span> -DCMAKE_SYSTEM_PREFIX_PATH="${cmake.install_prefix}\;${prefix}\;/usr"
configure.args-append \
</pre><pre style='margin:0'>
</pre>