aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNibbles McGurk2011-09-17 23:31:54 -0700
committerJack Nagel2011-09-18 16:16:27 -0500
commit3888e1243f2d1568a9982e5235325627eef2a4b5 (patch)
treef249823c6d8aec39db5dfcf45cb2d9aa7991faf0
parent80cb72f732a8727dde7bea74ce0c543e2d2dd8ca (diff)
downloadhomebrew-3888e1243f2d1568a9982e5235325627eef2a4b5.tar.bz2
jpeg: remove default flags
Jpeg 8c is the foundation of many libraries and applications. It gets a minor checkup. It had two configure flags listed in the formula that were already the default. So those were removed. No other changes were made, and the library and its dependents do not need to be rebuilt. Closes #7700. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
-rw-r--r--Library/Formula/jpeg.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Formula/jpeg.rb b/Library/Formula/jpeg.rb
index 1f2d041bf..bf4c97ea6 100644
--- a/Library/Formula/jpeg.rb
+++ b/Library/Formula/jpeg.rb
@@ -7,8 +7,8 @@ class Jpeg < Formula
homepage 'http://www.ijg.org'
def install
- ENV.universal_binary
- system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking", "--enable-shared", "--enable-static"
+ ENV.universal_binary # Builds universal libs. Default is static & shared.
+ system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking"
system "make install"
end
end