aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/shiboken.rb
diff options
context:
space:
mode:
authorAdam Vandenberg2012-02-21 21:12:27 -0800
committerAdam Vandenberg2012-02-24 21:35:51 -0800
commit531a5765099c95f56c0455e0a4686b8952569105 (patch)
tree4e2802cb1e71f7af44e7e266fac678fb1a90b008 /Library/Formula/shiboken.rb
parent55f3c49a9e27d88fbfecc48d982bf0f31414f9a5 (diff)
downloadhomebrew-531a5765099c95f56c0455e0a4686b8952569105.tar.bz2
Put source path last in cmake args
Diffstat (limited to 'Library/Formula/shiboken.rb')
-rw-r--r--Library/Formula/shiboken.rb3
1 files changed, 1 insertions, 2 deletions
diff --git a/Library/Formula/shiboken.rb b/Library/Formula/shiboken.rb
index 223917dc5..d23473522 100644
--- a/Library/Formula/shiboken.rb
+++ b/Library/Formula/shiboken.rb
@@ -6,13 +6,12 @@ class Shiboken < Formula
md5 '9c9d696c8c426fb5abf28a6bd3759558'
depends_on 'cmake' => :build
-
depends_on 'generatorrunner'
def install
# Building the tests also runs them. Not building and running tests cuts
# install time in half.
- system "cmake . #{std_cmake_parameters} -DBUILD_TESTS=OFF"
+ system "cmake #{std_cmake_parameters} -DBUILD_TESTS=OFF ."
system "make install"
end
end