aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdam Vandenberg2012-02-11 10:03:26 -0800
committerAdam Vandenberg2012-02-11 10:03:26 -0800
commit0bce8c4ddf6e8b7f566ba205ced08be51b77b10e (patch)
treeffe26883ceeb16969e103ab7bd83fc97fc685832
parentb7a469089a45c884ecfae38112d4606332b3b7d6 (diff)
downloadhomebrew-0bce8c4ddf6e8b7f566ba205ced08be51b77b10e.tar.bz2
v8: fix install_name_tool call
-rw-r--r--Library/Formula/v8.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/v8.rb b/Library/Formula/v8.rb
index e28f29403..f8962b065 100644
--- a/Library/Formula/v8.rb
+++ b/Library/Formula/v8.rb
@@ -26,6 +26,6 @@ class V8 < Formula
lib.install 'libv8.dylib'
bin.install 'shell' => 'v8'
- system "install_name_tool", "-change libv8.dylib", "#{lib}/libv8.dylib", "#{bin}/v8"
+ system "install_name_tool", "-change", "libv8.dylib", "#{lib}/libv8.dylib", "#{bin}/v8"
end
end