aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorAdam Vandenberg2014-02-24 22:23:35 -0800
committerAdam Vandenberg2014-02-27 08:21:17 -0800
commita697b9ddce84008e79f5e8db5223ba141564db0a (patch)
tree9ed67dcf1e1e7125185bb8ac4dca5cc22c2bc951 /Library/Formula
parent196ca57f6f077af4a126ed42f9bfa0286e2609af (diff)
downloadhomebrew-a697b9ddce84008e79f5e8db5223ba141564db0a.tar.bz2
gpg-agent: use Formula[]
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/gpg-agent.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/Library/Formula/gpg-agent.rb b/Library/Formula/gpg-agent.rb
index 496fb0df0..fe0dabe52 100644
--- a/Library/Formula/gpg-agent.rb
+++ b/Library/Formula/gpg-agent.rb
@@ -17,14 +17,14 @@ class GpgAgent < Formula
def patches; DATA; end
def install
- # so we don't use Clang's internal stdint.h
+ # don't use Clang's internal stdint.h
ENV['gl_cv_absolute_stdint_h'] = "#{MacOS.sdk_path}/usr/include/stdint.h"
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--enable-agent-only",
- "--with-pinentry-pgm=#{Formula.factory('pinentry').opt_prefix}/bin/pinentry",
- "--with-scdaemon-pgm=#{Formula.factory('gnupg2').opt_prefix}/libexec/scdaemon"
+ "--with-pinentry-pgm=#{Formula['pinentry'].opt_prefix}/bin/pinentry",
+ "--with-scdaemon-pgm=#{Formula['gnupg2'].opt_prefix}/libexec/scdaemon"
system "make install"
end
end