aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorMax Howell2011-09-10 11:24:29 +0100
committerMax Howell2011-09-10 11:30:00 +0100
commitc1e354647fd16b3fdbc075b63277529195df92af (patch)
tree4b4ac05c651fcb4619a76f19c343779ef11d767f /Library/Formula
parente2009d01293dfc08f906f93492925a530807af86 (diff)
downloadhomebrew-c1e354647fd16b3fdbc075b63277529195df92af.tar.bz2
With xcodebuild don't set CC, CXX, etc.
The compiler setting in the xcodeproj is overridden by the CC setting in the environment. This is a bit insane IMO since the xcodeproj itself has detailed decisions about what tools to use. Fixes #6406.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/jstalk.rb4
-rw-r--r--Library/Formula/mogenerator.rb1
2 files changed, 0 insertions, 5 deletions
diff --git a/Library/Formula/jstalk.rb b/Library/Formula/jstalk.rb
index d5d78f27e..d13cd3919 100644
--- a/Library/Formula/jstalk.rb
+++ b/Library/Formula/jstalk.rb
@@ -11,10 +11,6 @@ class Jstalk < Formula
exit 1
end
- # JSTalk specifies its particular compiler needs in jstalk.xcodeproj
- ENV.delete 'CC'
- ENV.delete 'CXX'
-
args = ["-configuration", "Release", "ONLY_ACTIVE_ARCH=YES"]
targets = ["JSTalk Framework", "jstalk command line", "JSTalk Editor"]
diff --git a/Library/Formula/mogenerator.rb b/Library/Formula/mogenerator.rb
index 119b856c8..272729576 100644
--- a/Library/Formula/mogenerator.rb
+++ b/Library/Formula/mogenerator.rb
@@ -7,7 +7,6 @@ class Mogenerator < Formula
head "https://github.com/rentzsch/mogenerator.git"
def install
- ENV.clang
system "xcodebuild -target mogenerator -configuration Release SYMROOT=symroot OBJROOT=objroot"
bin.install "symroot/Release/mogenerator"