From 3888e1243f2d1568a9982e5235325627eef2a4b5 Mon Sep 17 00:00:00 2001 From: Nibbles McGurk Date: Sat, 17 Sep 2011 23:31:54 -0700 Subject: 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 --- Library/Formula/jpeg.rb | 4 ++-- 1 file 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 -- cgit v1.2.3