aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
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