aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorJack Nagel2013-11-12 12:00:18 -0600
committerJack Nagel2013-11-12 13:53:29 -0600
commit091df05e8d2d7b73ad14b5ddba7e8f8358e97c6f (patch)
tree9d588b8cb5c531b298295de80d29c3ba00e52b29 /Library/Formula
parent6cb042247534e22de6d4a7a3b1ed14a00b855c38 (diff)
downloadhomebrew-091df05e8d2d7b73ad14b5ddba7e8f8358e97c6f.tar.bz2
pdnsrec: enable superenv
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/pdnsrec.rb7
1 files changed, 1 insertions, 6 deletions
diff --git a/Library/Formula/pdnsrec.rb b/Library/Formula/pdnsrec.rb
index dd81393ba..4453adfa9 100644
--- a/Library/Formula/pdnsrec.rb
+++ b/Library/Formula/pdnsrec.rb
@@ -9,16 +9,11 @@ class Pdnsrec < Formula
depends_on 'boost'
depends_on 'lua' => :optional
- # Disable superenv, else the compiled binary crashes at startup
- env :std
-
def install
# Set overrides using environment variables
ENV['DESTDIR'] = "#{prefix}"
ENV['OPTFLAGS'] = "-O0"
-
- # Ensure only -O0 is passed to compiler
- ENV.remove_from_cflags /-Os/
+ ENV.O0
# Include Lua if requested
if build.include? 'with-lua'