Skip to content

Commit

Permalink
Explicitly mark Xcode deps as build-time deps
Browse files Browse the repository at this point in the history
  • Loading branch information
jacknagel committed May 30, 2014
1 parent 54d43ec commit 9ebe66e
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Formula/chrome-cli.rb
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class ChromeCli < Formula
sha1 "1ed37da928049461e239d848a77e3cc1838ee17a" => :mountain_lion
end

depends_on :xcode
depends_on :xcode => :build
depends_on :macos => :mountain_lion

def install
Expand Down
2 changes: 1 addition & 1 deletion Formula/fuse4x-kext.rb
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class Fuse4xKext < Formula
sha1 '6f306f38557d016f5eaa0c999f2092d0767870e6' => :lion
end

depends_on :xcode
depends_on :xcode => :build

def install
ENV.delete('CC')
Expand Down
2 changes: 1 addition & 1 deletion Formula/graphviz.rb
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class Graphviz < Formula
depends_on "librsvg" => :optional
depends_on "freetype" => :optional
depends_on :x11 if build.with? "x"
depends_on :xcode if build.with? "app"
depends_on :xcode => :build if build.with? "app"

fails_with :clang do
build 318
Expand Down
2 changes: 1 addition & 1 deletion Formula/launch.rb
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class Launch < Formula
sha1 "1166c77e00378087195ad5273685d839dbb9f305" => :lion
end

depends_on :xcode
depends_on :xcode => :build

def install
rm_rf "launch" # We'll build it ourself, thanks.
Expand Down
2 changes: 1 addition & 1 deletion Formula/osxfuse.rb
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class Osxfuse < Formula
end

depends_on :macos => :snow_leopard
depends_on :xcode
depends_on :xcode => :build
depends_on "autoconf" => :build
depends_on "automake" => :build
depends_on "libtool" => :build
Expand Down
2 changes: 1 addition & 1 deletion Formula/qt5.rb
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class Qt5 < Formula
depends_on "pkg-config" => :build
depends_on "d-bus" => :optional
depends_on "mysql" => :optional
depends_on :xcode
depends_on :xcode => :build

def install
ENV.universal_binary if build.universal?
Expand Down
2 changes: 1 addition & 1 deletion Formula/terminal-notifier.rb
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class TerminalNotifier < Formula
end

depends_on :macos => :mountain_lion
depends_on :xcode
depends_on :xcode => :build

def install
xcodebuild "-project", "Terminal Notifier.xcodeproj",
Expand Down
2 changes: 1 addition & 1 deletion Formula/unar.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ class Unar < Formula

head 'https://code.google.com/p/theunarchiver/' , :using => :hg

depends_on :xcode
depends_on :xcode => :build

bottle do
cellar :any
Expand Down
2 changes: 1 addition & 1 deletion Formula/xulrunner.rb
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ class Xulrunner < Formula
end

depends_on :macos => :lion # needs clang++
depends_on :xcode
depends_on :xcode => :build
depends_on :python => :build
depends_on Python273Requirement => :build
depends_on "gnu-tar" => :build
Expand Down

0 comments on commit 9ebe66e

Please sign in to comment.