From 75ffbeecb2da12a1f9c5bff02a9213aaf223795a Mon Sep 17 00:00:00 2001 From: Jack Nagel Date: Tue, 13 May 2014 19:10:11 -0500 Subject: gnupg: use ENV.append --- Library/Formula/gnupg.rb | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) (limited to 'Library/Formula') diff --git a/Library/Formula/gnupg.rb b/Library/Formula/gnupg.rb index 52aad8035..62653f0a8 100644 --- a/Library/Formula/gnupg.rb +++ b/Library/Formula/gnupg.rb @@ -14,19 +14,14 @@ class Gnupg < Formula option '8192', 'Build with support for private keys of up to 8192 bits' - def cflags - cflags = ENV.cflags.to_s - cflags += ' -std=gnu89 -fheinous-gnu-extensions' if ENV.compiler == :clang - cflags - end - def install inreplace 'g10/keygen.c', 'max=4096', 'max=8192' if build.include? '8192' + ENV.append "CFLAGS", "-std=gnu89 -fheinous-gnu-extensions" if ENV.compiler == :clang system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}", "--disable-asm" - system "make", "CFLAGS=#{cflags}" + system "make" system "make check" # we need to create these directories because the install target has the -- cgit v1.2.3