aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAdam Vandenberg2013-02-02 12:02:20 -0800
committerAdam Vandenberg2013-02-02 12:02:20 -0800
commitcb30f366e032f2948c3ad0d420db7a8a03a1c1c9 (patch)
tree8900a862fc5d7f0c8bd83b2743bf510e4c79a4f3 /Library
parentca8141e01b0787d47b785b349715cd3501fb28bf (diff)
downloadhomebrew-cb30f366e032f2948c3ad0d420db7a8a03a1c1c9.tar.bz2
v8: depends on xcode
Because of gyp, v8 currently needs a full xcode install. Closes #17484.
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/v8.rb10
1 files changed, 4 insertions, 6 deletions
diff --git a/Library/Formula/v8.rb b/Library/Formula/v8.rb
index f4e04ced1..68c7bc807 100644
--- a/Library/Formula/v8.rb
+++ b/Library/Formula/v8.rb
@@ -8,13 +8,11 @@ class V8 < Formula
head 'https://github.com/v8/v8.git'
- def install
- # Lie to `xcode-select` for now to work around a GYP bug that affects
- # CLT-only systems:
- #
- # http://code.google.com/p/gyp/issues/detail?id=292
- ENV['DEVELOPER_DIR'] = MacOS.dev_tools_path unless MacOS::Xcode.installed?
+ # gyp currently depends on a full xcode install
+ # https://code.google.com/p/gyp/issues/detail?id=292
+ depends_on :xcode
+ def install
system 'make dependencies'
system 'make', 'native',
"-j#{ENV.make_jobs}",