aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorAdam Vandenberg2012-07-09 09:59:24 -0700
committerAdam Vandenberg2012-07-09 09:59:24 -0700
commit3c5f881e14ddaf2d0a6bb9651e1422ed4cb48185 (patch)
treeecb13aca45e86ae14029631c436c9ab64a42c9de /Library/Formula
parent2485b52376457f75fae07b0485a4bcd702592bb2 (diff)
downloadhomebrew-3c5f881e14ddaf2d0a6bb9651e1422ed4cb48185.tar.bz2
libpst: disable Python.
Compiling against system Python does not work; a Homebrewed version is currently required. Suggest that users of the Python bindings add a `--python` option that sets the proper configure flags. Closes #13097.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/libpst.rb3
1 files changed, 1 insertions, 2 deletions
diff --git a/Library/Formula/libpst.rb b/Library/Formula/libpst.rb
index 3786bb857..aa71e6e61 100644
--- a/Library/Formula/libpst.rb
+++ b/Library/Formula/libpst.rb
@@ -9,8 +9,7 @@ class Libpst < Formula
def install
system "./configure", "--prefix=#{prefix}",
- # "--mandir=#{man}",
- "--with-boost-python=boost_python-mt"
+ "--disable-python"
system "make install"
end
end