aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorKeno Fischer2014-10-02 00:28:52 -0400
committerAdam Vandenberg2014-10-06 07:24:15 -0700
commitdd52bf9e4d48ce58f94e047efdb83f4971da3930 (patch)
tree6d53dd6eaafd543bc8f8c60e24eac4bfe781fc6e /Library/Formula
parent8a7d769abd86567fadcde04be532bb717c418de4 (diff)
downloadhomebrew-dd52bf9e4d48ce58f94e047efdb83f4971da3930.tar.bz2
prooftree: fix configure
The prooftree configure file does not like having an equals after prefix but requires a space instead. Fixes the error: ``` ==> Downloading http://askra.de/software/prooftree/releases/prooftree-0.10.tar.gz Already downloaded: /Library/Caches/Homebrew/prooftree-0.10.tar.gz ==> ./configure --prefix=/usr/local/Cellar/prooftree/0.10 Recognized options are: --prefix <path> installation prefix [/usr/local] --bindir <path> user executables [PREFIX/bin] --mandir <path> man pages [PREFIX/share/man] ```
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/prooftree.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/prooftree.rb b/Library/Formula/prooftree.rb
index 46e6bc5d8..c8f08a6fb 100644
--- a/Library/Formula/prooftree.rb
+++ b/Library/Formula/prooftree.rb
@@ -9,7 +9,7 @@ class Prooftree < Formula
depends_on 'lablgtk'
def install
- system "./configure", "--prefix=#{prefix}"
+ system "./configure", "--prefix", prefix
system "make"
system "make install"
end