aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJosh Ballanco2010-10-23 12:15:38 -0700
committerAdam Vandenberg2010-10-23 12:29:47 -0700
commit7019ad31feb45982eb91ce9a1c837d28eec20f9e (patch)
tree140ebc387fc50475ccdfe7e52587a5154465960f
parent88e07996976d54b6a21a11a2bc08d1e5d64da850 (diff)
downloadhomebrew-7019ad31feb45982eb91ce9a1c837d28eec20f9e.tar.bz2
Ragel config wasn't using prefix
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
-rw-r--r--Library/Formula/ragel.rb3
1 files changed, 1 insertions, 2 deletions
diff --git a/Library/Formula/ragel.rb b/Library/Formula/ragel.rb
index f6d50b838..3040d4f02 100644
--- a/Library/Formula/ragel.rb
+++ b/Library/Formula/ragel.rb
@@ -6,8 +6,7 @@ class Ragel <Formula
md5 '5c4366369f4934adc02bd71dc1a4ee1f'
def install
- system "./configure", "--disable-dependency-tracking"
- "--prefix=#{prefix}"
+ system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make install"
end
end