aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/imagesnap.rb
diff options
context:
space:
mode:
authorKjell2011-08-26 17:12:11 -0500
committerJack Nagel2011-08-26 22:37:07 -0500
commit099fe48d1001a7c57f0d8afcc34b4e9092b77f94 (patch)
treec4e2650992d380b9794605dd2accaa78f0b87ad6 /Library/Formula/imagesnap.rb
parentd8c1bd19be0ce0a719cc20288ccff1838d67df58 (diff)
downloadhomebrew-099fe48d1001a7c57f0d8afcc34b4e9092b77f94.tar.bz2
imagesnap: use explicit SDK version
The build tries to find the 10.5 SDK by default, so it fails with XCode 4 / Lion. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Formula/imagesnap.rb')
-rw-r--r--Library/Formula/imagesnap.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/imagesnap.rb b/Library/Formula/imagesnap.rb
index bd6ba8281..b9f1dbd43 100644
--- a/Library/Formula/imagesnap.rb
+++ b/Library/Formula/imagesnap.rb
@@ -6,7 +6,7 @@ class Imagesnap < Formula
md5 'eddd65d04782cc7538c009cf8a6f7568'
def install
- system "xcodebuild -project ImageSnap.xcodeproj SYMROOT=build"
+ system "xcodebuild -project ImageSnap.xcodeproj SYMROOT=build -sdk macosx#{MACOS_VERSION}"
bin.install "build/Release/imagesnap"
end
end