aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorMichel Steuwer2010-03-27 23:14:30 +0100
committerDavid Höppner2010-03-28 15:16:14 +0200
commit59e0c916861c8e75bd4103b019c45cea66b9720b (patch)
tree3335b3d7a35432e4f1b3b1225e7087d7487a0425 /Library
parent2036c6b6e63dc102abfdb3654b5e50635bdad997 (diff)
downloadhomebrew-59e0c916861c8e75bd4103b019c45cea66b9720b.tar.bz2
'Fixed' an issu with pth. The dylib library wasn't build. Removing the --disable-debug option fixes the problem.
Signed-off-by: David Höppner <0xffea@gmail.com> * add comment in the formula
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/pth.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/Library/Formula/pth.rb b/Library/Formula/pth.rb
index 64a3c6249..6ff7a6bf8 100644
--- a/Library/Formula/pth.rb
+++ b/Library/Formula/pth.rb
@@ -9,7 +9,8 @@ class Pth <Formula
ENV.deparallelize
system "./configure",
"--prefix=#{prefix}",
- "--disable-debug",
+# Shared library will not be build with disable debug
+# "--disable-debug",
"--disable-dependency-tracking"
system "make install"
end