aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorIan Rahimi2012-08-21 16:41:53 -0400
committerAdam Vandenberg2012-08-21 13:53:37 -0700
commita4e3cc304f65e551b92941f2fcca2647c0a4f9d6 (patch)
tree12117dade7ef5783cf2b3e501bb7a4a637b210d1 /Library/Formula
parente6b0de7c7d74b8cd9413f322c4638066a2cc5ab8 (diff)
downloadhomebrew-a4e3cc304f65e551b92941f2fcca2647c0a4f9d6.tar.bz2
Fixed libdnet failing to build when --with-python is supplied to brew install
Closes #14352. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/libdnet.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/libdnet.rb b/Library/Formula/libdnet.rb
index 5da2d18bb..322ecb257 100644
--- a/Library/Formula/libdnet.rb
+++ b/Library/Formula/libdnet.rb
@@ -20,7 +20,7 @@ class Libdnet < Formula
--prefix=#{prefix}
--mandir=#{man}
]
- args << "with-python" if build.include? "with-python"
+ args << "--with-python" if build.include? "with-python"
system "./configure", *args
system "make install"
end