aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorJack Nagel2013-08-23 15:56:18 -0500
committerJack Nagel2013-08-23 15:56:27 -0500
commitd4bc1c81fc1827a4667629dba51c7b833d36aff3 (patch)
treee75d3f2b0173c4e29d30219c82f973173ab77c10 /Library/Formula
parent6596db2bd982b4d40c798f3c93daa4e2a963af44 (diff)
downloadhomebrew-d4bc1c81fc1827a4667629dba51c7b833d36aff3.tar.bz2
Remove ad-hoc header padding fixes
This is the default now.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/boost.rb1
-rw-r--r--Library/Formula/icu4c.rb1
-rw-r--r--Library/Formula/netpbm.rb2
3 files changed, 0 insertions, 4 deletions
diff --git a/Library/Formula/boost.rb b/Library/Formula/boost.rb
index 09aada22e..e32aa6816 100644
--- a/Library/Formula/boost.rb
+++ b/Library/Formula/boost.rb
@@ -150,7 +150,6 @@ class Boost < Formula
args << "cxxflags=-arch #{Hardware::CPU.arch_64_bit}" if MacOS.prefer_64_bit? or build.universal?
args << "cxxflags=-arch #{Hardware::CPU.arch_32_bit}" if !MacOS.prefer_64_bit? or build.universal?
args << "linkflags=-stdlib=libc++"
- args << "linkflags=-headerpad_max_install_names"
args << "linkflags=-arch #{Hardware::CPU.arch_64_bit}" if MacOS.prefer_64_bit? or build.universal?
args << "linkflags=-arch #{Hardware::CPU.arch_32_bit}" if !MacOS.prefer_64_bit? or build.universal?
end
diff --git a/Library/Formula/icu4c.rb b/Library/Formula/icu4c.rb
index 30e052d5d..bd16fcc5a 100644
--- a/Library/Formula/icu4c.rb
+++ b/Library/Formula/icu4c.rb
@@ -20,7 +20,6 @@ class Icu4c < Formula
def install
ENV.universal_binary if build.universal?
- ENV.append "LDFLAGS", "-headerpad_max_install_names"
args = ["--prefix=#{prefix}", "--disable-samples", "--disable-tests", "--enable-static"]
args << "--with-library-bits=64" if MacOS.prefer_64_bit?
cd "source" do
diff --git a/Library/Formula/netpbm.rb b/Library/Formula/netpbm.rb
index bc0a8ef8e..2586aec8a 100644
--- a/Library/Formula/netpbm.rb
+++ b/Library/Formula/netpbm.rb
@@ -30,8 +30,6 @@ class Netpbm < Formula
s.change_make_var! "JASPERHDR_DIR", "#{Formula.factory('jasper').opt_prefix}/include/jasper"
end
- ENV.append 'LDFLAGS', '-Wl,-headerpad_max_install_names'
-
ENV.deparallelize
system "make"
system "make", "package", "pkgdir=#{buildpath}/stage"