aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/exim.rb
diff options
context:
space:
mode:
authorLee Hanxue2013-09-25 21:16:46 +0800
committerAdam Vandenberg2013-09-25 20:48:09 -0700
commit97daedbd02cc5a744c63cfa092185bb1e6eb7b52 (patch)
treef9776be7b6ae8cf4732755a3658c607ebdc27072 /Library/Formula/exim.rb
parent3481b708a2116ac4b6274eae79f097b521c7d51a (diff)
downloadhomebrew-97daedbd02cc5a744c63cfa092185bb1e6eb7b52.tar.bz2
exim: fix makefile path to /tmp
Closes #22812. Closes #22817. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/exim.rb')
-rw-r--r--Library/Formula/exim.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/Library/Formula/exim.rb b/Library/Formula/exim.rb
index 3dfb3f46d..48d52cffc 100644
--- a/Library/Formula/exim.rb
+++ b/Library/Formula/exim.rb
@@ -19,6 +19,8 @@ class Exim < Formula
s.gsub! '/usr/exim/configure', etc/'exim.conf'
s.gsub! '/usr/exim', prefix
s.gsub! '/var/spool/exim', var/'spool/exim'
+ # http://trac.macports.org/ticket/38654
+ s.gsub! 'TMPDIR="/tmp"', 'TMPDIR=/tmp'
s << "SUPPORT_MAILDIR=yes\n" if build.include? 'support-maildir'
s << "AUTH_PLAINTEXT=yes\n"
s << "SUPPORT_TLS=yes\n"