From 03b69a5cdd1d987f88d0c886a2a67c7f355b8153 Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Wed, 12 Feb 2014 21:20:27 -0800 Subject: Disable rpath usage in Rust builds The rpaths end up being setup incorrectly, which causes strange issues like mozilla/rust#12178. Closes #26686. Signed-off-by: Adam Vandenberg --- Library/Formula/rust.rb | 1 + 1 file changed, 1 insertion(+) (limited to 'Library/Formula') diff --git a/Library/Formula/rust.rb b/Library/Formula/rust.rb index 3be69bf0c..71c1f62f6 100644 --- a/Library/Formula/rust.rb +++ b/Library/Formula/rust.rb @@ -20,6 +20,7 @@ class Rust < Formula def install args = ["--prefix=#{prefix}"] + args << "--disable-rpath" if build.head? args << "--enable-clang" if ENV.compiler == :clang system "./configure", *args system "make" -- cgit v1.2.3