diff options
| author | Adam Vandenberg | 2011-04-08 11:16:37 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2011-04-09 09:36:30 -0700 |
| commit | b782d9da90d561638d9697a98d99faaa61b64453 (patch) | |
| tree | 402c7460717df2d37ce48c61960b121fb74941a5 /Library/Formula/tcpflow.rb | |
| parent | b5b6da2c6c27b9784808329c2c9b45f1976647a9 (diff) | |
| download | homebrew-b782d9da90d561638d9697a98d99faaa61b64453.tar.bz2 | |
Normalize use of MACOS_VERSION
Diffstat (limited to 'Library/Formula/tcpflow.rb')
| -rw-r--r-- | Library/Formula/tcpflow.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Library/Formula/tcpflow.rb b/Library/Formula/tcpflow.rb index b4f0a7c83..0f848cfc8 100644 --- a/Library/Formula/tcpflow.rb +++ b/Library/Formula/tcpflow.rb @@ -11,10 +11,10 @@ class Tcpflow < Formula end def install - if MACOS_VERSION >= 10.6 - cp Dir["#{MacOS.xcode_prefix}/usr/share/libtool/config/config.*"], "." - else + if MacOS.leopard? cp Dir["#{MacOS.xcode_prefix}/usr/share/libtool/config.*"], "." + else + cp Dir["#{MacOS.xcode_prefix}/usr/share/libtool/config/config.*"], "." end system "./configure", "--disable-debug", "--disable-dependency-tracking", |
