aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/camlp5.rb
diff options
context:
space:
mode:
authorAdam Vandenberg2012-08-09 08:51:54 -0700
committerAdam Vandenberg2012-08-09 08:51:54 -0700
commite40bc41d84e32902d73d8c3868843470a269a449 (patch)
tree913a8826f17227d3f6e2e09ff167a6a5d96ebaf1 /Library/Formula/camlp5.rb
parentd59fcb3d6b99302a3134030582813ecbf9d38258 (diff)
downloadhomebrew-e40bc41d84e32902d73d8c3868843470a269a449.tar.bz2
Fix option usage
Diffstat (limited to 'Library/Formula/camlp5.rb')
-rw-r--r--Library/Formula/camlp5.rb3
1 files changed, 1 insertions, 2 deletions
diff --git a/Library/Formula/camlp5.rb b/Library/Formula/camlp5.rb
index 3aa2e0bf6..40d995351 100644
--- a/Library/Formula/camlp5.rb
+++ b/Library/Formula/camlp5.rb
@@ -10,8 +10,7 @@ class Camlp5 < Formula
option 'strict', 'Compile in strict mode'
def install
- # compile for strict or transitional
- if build.include? '--strict'
+ if build.include? 'strict'
strictness = "-strict"
else
strictness = "-transitional"