From 6fd7005faa627adfff97377f2e6427b0d73b7e06 Mon Sep 17 00:00:00 2001 From: Jack Nagel Date: Thu, 1 Dec 2011 20:36:16 -0600 Subject: [PATCH] libao: enable static library build Closes Homebrew/homebrew#8922. Signed-off-by: Jack Nagel --- Formula/libao.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Formula/libao.rb b/Formula/libao.rb index 21ac76fb4d0..086e8dfc0c5 100644 --- a/Formula/libao.rb +++ b/Formula/libao.rb @@ -9,7 +9,8 @@ class Libao < Formula def install system "./configure", "--disable-dependency-tracking", - "--prefix=#{prefix}" + "--prefix=#{prefix}", + "--enable-static" system "make install" end end