diff options
| author | Lee Hanxue | 2013-09-25 21:16:46 +0800 |
|---|---|---|
| committer | Adam Vandenberg | 2013-09-25 20:48:09 -0700 |
| commit | 97daedbd02cc5a744c63cfa092185bb1e6eb7b52 (patch) | |
| tree | f9776be7b6ae8cf4732755a3658c607ebdc27072 /Library/Formula/exim.rb | |
| parent | 3481b708a2116ac4b6274eae79f097b521c7d51a (diff) | |
| download | homebrew-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.rb | 2 |
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" |
