diff options
| author | Adam Vandenberg | 2013-02-02 12:02:20 -0800 |
|---|---|---|
| committer | Adam Vandenberg | 2013-02-02 12:02:20 -0800 |
| commit | cb30f366e032f2948c3ad0d420db7a8a03a1c1c9 (patch) | |
| tree | 8900a862fc5d7f0c8bd83b2743bf510e4c79a4f3 /Library/Formula | |
| parent | ca8141e01b0787d47b785b349715cd3501fb28bf (diff) | |
| download | homebrew-cb30f366e032f2948c3ad0d420db7a8a03a1c1c9.tar.bz2 | |
v8: depends on xcode
Because of gyp, v8 currently needs a full xcode install.
Closes #17484.
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/v8.rb | 10 |
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}", |
