aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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