aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/appswitch.rb
diff options
context:
space:
mode:
authorAdam Vandenberg2010-08-10 08:05:31 -0700
committerAdam Vandenberg2010-08-10 08:30:19 -0700
commit29af47c81d2bcfbbb5e10d925807ff0f3c9a5e75 (patch)
tree63e85e90f58013cd345a65ce17091d1ad24a11f1 /Library/Formula/appswitch.rb
parentf6f1af57906cb42a9d0ae323546fe7bfeff0fa99 (diff)
downloadhomebrew-29af47c81d2bcfbbb5e10d925807ff0f3c9a5e75.tar.bz2
Update formulae to use ENV.cflags
Diffstat (limited to 'Library/Formula/appswitch.rb')
-rw-r--r--Library/Formula/appswitch.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/appswitch.rb b/Library/Formula/appswitch.rb
index df2eef95f..8e31f79fd 100644
--- a/Library/Formula/appswitch.rb
+++ b/Library/Formula/appswitch.rb
@@ -6,7 +6,7 @@ class Appswitch <Formula
md5 '07cf9884a07939da487898cddba0c296'
def install
- system "#{ENV.cc} -o appswitch #{ENV['CFLAGS']} main.c -framework ApplicationServices"
+ system "#{ENV.cc} -o appswitch #{ENV.cflags} main.c -framework ApplicationServices"
man1.install gzip('appswitch.1')
bin.install 'appswitch'
end