diff options
| author | Robert Shaw | 2010-05-12 11:41:35 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2010-05-12 11:46:45 -0700 |
| commit | ea613f12e8009ac48a564a773311b84ce7fb042b (patch) | |
| tree | 779d6804d8f10e2a73d0dd87d07fe538e9297ec0 /Library | |
| parent | 4895330069c51a156d652ac95e674ffae9674779 (diff) | |
| download | homebrew-ea613f12e8009ac48a564a773311b84ce7fb042b.tar.bz2 | |
platypus: fix build problem on >10.4 machines
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/platypus.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Formula/platypus.rb b/Library/Formula/platypus.rb index a4b0961ae..57f239b84 100644 --- a/Library/Formula/platypus.rb +++ b/Library/Formula/platypus.rb @@ -20,11 +20,11 @@ class Platypus <Formula end # Build binary - system "xcodebuild", "-target", "platypus", "-configuration", "Deployment", "ONLY_ACTIVE_ARCH=YES" + system "xcodebuild", "-target", "platypus", "-configuration", "Deployment", "ONLY_ACTIVE_ARCH=YES", "SDKROOT=", "MACOSX_DEPLOYMENT_TARGET=" end # Build application sub-binary needed by command-line utility Dir.chdir('Script_Exec') do - system "xcodebuild", "-target", "ScriptExec", "-configuration", "Release", "ONLY_ACTIVE_ARCH=YES" + system "xcodebuild", "-target", "ScriptExec", "-configuration", "Release", "ONLY_ACTIVE_ARCH=YES", "SDKROOT=", "MACOSX_DEPLOYMENT_TARGET=" end # Install binary and man page |
