aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Benediktsson2011-09-21 12:20:57 -0700
committerJack Nagel2011-09-21 14:24:54 -0500
commitcbf59eb04ec944c17db5d452e3f243f9f26c7128 (patch)
treecf5713dcad4a5688278920feb82e99f5cccc6ead
parentfd684483af91968f19bfb23fbbe92ca4390defc1 (diff)
downloadhomebrew-cbf59eb04ec944c17db5d452e3f243f9f26c7128.tar.bz2
udis86: add --enable-shared option
Closes #7745. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
-rw-r--r--Library/Formula/udis86.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/udis86.rb b/Library/Formula/udis86.rb
index eeeb3a014..047ea1203 100644
--- a/Library/Formula/udis86.rb
+++ b/Library/Formula/udis86.rb
@@ -6,7 +6,7 @@ class Udis86 < Formula
homepage 'http://udis86.sourceforge.net'
def install
- system "./configure", "--prefix=#{prefix}"
+ system "./configure", "--enable-shared", "--prefix=#{prefix}"
system "make"
system "make install"
end