diff options
| author | Jack Nagel | 2014-08-06 19:57:50 -0500 |
|---|---|---|
| committer | Jack Nagel | 2014-08-06 19:57:50 -0500 |
| commit | 9d3e242aaad5bd96c45944fe1d1a1f0ff580a0e2 (patch) | |
| tree | f68424cc8426c6ecb73aff7b7bbf27336d50c7b8 /Library | |
| parent | 27046d6ea1ed5a024e8eefb23bd09b2e491a8fb2 (diff) | |
| download | homebrew-9d3e242aaad5bd96c45944fe1d1a1f0ff580a0e2.tar.bz2 | |
tcc: fix Xcode-only build
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/tcc.rb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Library/Formula/tcc.rb b/Library/Formula/tcc.rb index b4c17398c..8483fba9d 100644 --- a/Library/Formula/tcc.rb +++ b/Library/Formula/tcc.rb @@ -7,7 +7,9 @@ class Tcc < Formula def install ENV.j1 - system "./configure", "--prefix=#{prefix}", "--source-path=#{buildpath}" + system "./configure", "--prefix=#{prefix}", + "--source-path=#{buildpath}", + "--sysincludepaths=/usr/local/include:#{MacOS.sdk_path}/usr/include:{B}/include" system "make" system "make", "install" system "make", "test" |
