aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMisty De Meo2013-06-22 17:19:28 -0500
committerMisty De Meo2013-06-22 17:19:28 -0500
commite3f061d9900187e0082f17d4e857a55ff8fc4874 (patch)
tree1c46c4d69226012c36921504d4f79ed90626a3b6
parent386fbe33ea2c9d637edae800a3170a1eaa5d637c (diff)
downloadhomebrew-e3f061d9900187e0082f17d4e857a55ff8fc4874.tar.bz2
ldns: fix installing Python bindings
Fixes #20695.
-rw-r--r--Library/Formula/ldns.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/ldns.rb b/Library/Formula/ldns.rb
index fca000721..e7504cb80 100644
--- a/Library/Formula/ldns.rb
+++ b/Library/Formula/ldns.rb
@@ -25,6 +25,6 @@ class Ldns < Formula
system "./configure", *args
system "make"
system "make install"
- system "make", "install-pyldns"
+ system "make", "install-pyldns" if build.with? 'python'
end
end