diff options
| author | Adam Vandenberg | 2012-02-21 21:12:27 -0800 | 
|---|---|---|
| committer | Adam Vandenberg | 2012-02-24 21:35:51 -0800 | 
| commit | 531a5765099c95f56c0455e0a4686b8952569105 (patch) | |
| tree | 4e2802cb1e71f7af44e7e266fac678fb1a90b008 /Library/Formula/pyside.rb | |
| parent | 55f3c49a9e27d88fbfecc48d982bf0f31414f9a5 (diff) | |
| download | homebrew-531a5765099c95f56c0455e0a4686b8952569105.tar.bz2 | |
Put source path last in cmake args
Diffstat (limited to 'Library/Formula/pyside.rb')
| -rw-r--r-- | Library/Formula/pyside.rb | 3 | 
1 files changed, 1 insertions, 2 deletions
| diff --git a/Library/Formula/pyside.rb b/Library/Formula/pyside.rb index d49aa3851..b3aa9d915 100644 --- a/Library/Formula/pyside.rb +++ b/Library/Formula/pyside.rb @@ -14,7 +14,6 @@ class Pyside < Formula    md5 '233f0c6d2b3daf58cf88877d7f74557b'    depends_on 'cmake' => :build -    depends_on 'shiboken'    def install @@ -25,7 +24,7 @@ class Pyside < Formula      ENV.append_to_cflags "-F#{qt.prefix}/Frameworks"      # Also need `ALTERNATIVE_QT_INCLUDE_DIR` to prevent "missing file" errors. -    system "cmake . #{std_cmake_parameters} -DALTERNATIVE_QT_INCLUDE_DIR=#{qt.prefix}/Frameworks -DSITE_PACKAGE=#{site_package_dir} -DBUILD_TESTS=NO" +    system "cmake #{std_cmake_parameters} -DALTERNATIVE_QT_INCLUDE_DIR=#{qt.prefix}/Frameworks -DSITE_PACKAGE=#{site_package_dir} -DBUILD_TESTS=NO ."      system 'make install'    end | 
