aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike McQuaid2014-08-21 14:46:11 +0100
committerMike McQuaid2014-08-21 14:46:11 +0100
commit43c8e94622519d227001953c2cbea2b1b3ef7ee5 (patch)
tree93556d7e83b03ce122d142bb4c98eb2852fcfb7d
parentbde355c9c064e4cb5ea17ec296f249e43dc00500 (diff)
downloadhomebrew-43c8e94622519d227001953c2cbea2b1b3ef7ee5.tar.bz2
net-snmp: pedantic cleanup.
-rw-r--r--Library/Formula/net-snmp.rb5
1 files changed, 2 insertions, 3 deletions
diff --git a/Library/Formula/net-snmp.rb b/Library/Formula/net-snmp.rb
index aa8ba679d..7e7e13d82 100644
--- a/Library/Formula/net-snmp.rb
+++ b/Library/Formula/net-snmp.rb
@@ -35,12 +35,11 @@ class NetSnmp < Formula
if build.with? "python"
args << "--with-python-modules"
- # the net-snmp configure script finds the wrong python
- ENV['PYTHONPROG'] = `which python`
+ ENV["PYTHONPROG"] = `which python`
end
system "./configure", *args
system "make"
- system "make install"
+ system "make", "install"
end
end