From 10df6cd5027fe90064bfed2635492b52548dbed3 Mon Sep 17 00:00:00 2001 From: John Harrison Date: Fri, 26 Aug 2011 13:25:36 -0500 Subject: [PATCH] Pyside: Fix path to site-packages Corrected the site-packages paths for pyside and pyside-tools to agree with python's formula. Signed-off-by: Charlie Sharpsteen --- Formula/pyside-tools.rb | 2 +- Formula/pyside.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/pyside-tools.rb b/Formula/pyside-tools.rb index 4de5937b34..dda1bfe571 100644 --- a/Formula/pyside-tools.rb +++ b/Formula/pyside-tools.rb @@ -5,7 +5,7 @@ def which_python end def site_package_dir - "lib/#{which_python}/site_packages" + "lib/#{which_python}/site-packages" end class PysideTools < Formula diff --git a/Formula/pyside.rb b/Formula/pyside.rb index 826ba9d3cf..0ad5955754 100644 --- a/Formula/pyside.rb +++ b/Formula/pyside.rb @@ -5,7 +5,7 @@ def which_python end def site_package_dir - "lib/#{which_python}/site_packages" + "lib/#{which_python}/site-packages" end class Pyside < Formula