diff options
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}", |
