aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorAdam Vandenberg2012-10-03 06:42:18 -0700
committerAdam Vandenberg2012-10-03 06:43:28 -0700
commit21837073aeaf3354f5b1159f210b13ed31d7e48d (patch)
tree0c6212a2191f7328ce417b9d9c2b17cee25247c6 /Library/Formula
parent8193b37d01d77768814db0a5beff088982cba14b (diff)
downloadhomebrew-21837073aeaf3354f5b1159f210b13ed31d7e48d.tar.bz2
zookeeper: fix option checking
Fixes #15267.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/zookeeper.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/zookeeper.rb b/Library/Formula/zookeeper.rb
index c0a087c4a..26a81a1fb 100644
--- a/Library/Formula/zookeeper.rb
+++ b/Library/Formula/zookeeper.rb
@@ -61,7 +61,7 @@ class Zookeeper < Formula
build_python = build.include? "python"
build_perl = build.include? "perl"
- build_c = build_python or build_perl or build.include? "c"
+ build_c = build_python || build_perl || build.include?("c")
# Build & install C libraries.
cd "src/c" do