diff options
| author | Misty De Meo | 2013-06-22 17:19:28 -0500 |
|---|---|---|
| committer | Misty De Meo | 2013-06-22 17:19:28 -0500 |
| commit | e3f061d9900187e0082f17d4e857a55ff8fc4874 (patch) | |
| tree | 1c46c4d69226012c36921504d4f79ed90626a3b6 | |
| parent | 386fbe33ea2c9d637edae800a3170a1eaa5d637c (diff) | |
| download | homebrew-e3f061d9900187e0082f17d4e857a55ff8fc4874.tar.bz2 | |
ldns: fix installing Python bindings
Fixes #20695.
| -rw-r--r-- | Library/Formula/ldns.rb | 2 |
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 |
