aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAdam Vandenberg2011-01-20 08:40:22 -0800
committerAdam Vandenberg2011-01-20 08:40:22 -0800
commit91caff082ef14493fc7ebf2d51adc0268161ff83 (patch)
tree1bc8303e94d958d678e5e36608db865ae93afd32 /Library
parentf724ba83d5b92f8542819422e630db72be0b5c6a (diff)
downloadhomebrew-91caff082ef14493fc7ebf2d51adc0268161ff83.tar.bz2
Weechat - disable perl
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/weechat.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/weechat.rb b/Library/Formula/weechat.rb
index b00bb01c2..02b3c5b08 100644
--- a/Library/Formula/weechat.rb
+++ b/Library/Formula/weechat.rb
@@ -10,7 +10,6 @@ class Weechat <Formula
depends_on 'gnutls'
def install
-
# Remove all arch flags from the PERL_*FLAGS as we specify them ourselves.
# This messes up because the system perl is a fat binary with 32,64 and PPC
# compiles, but our deps don't have that.
@@ -25,6 +24,7 @@ class Weechat <Formula
#NOTE: -DPREFIX has to be specified because weechat devs enjoy being non-standard
system "cmake", "-DPREFIX=#{prefix}",
"-DENABLE_RUBY=OFF",
+ "-DENABLE_PERL=OFF",
std_cmake_parameters, "."
system "make install"
end