diff deploy/osx/paths.sh @ 372:2d3f1e5d8638

OS/X build fixes, for now slightly simpler (conceptually) situation in which we have a single bundle with two Python extension distributions in it, one for each active Python version
author Chris Cannam
date Thu, 24 Mar 2011 13:15:49 +0000
parents aa852b477e4d
children 0f3e086066fc
line wrap: on
line diff
--- a/deploy/osx/paths.sh	Thu Mar 24 10:47:03 2011 +0000
+++ b/deploy/osx/paths.sh	Thu Mar 24 13:15:49 2011 +0000
@@ -21,7 +21,7 @@
 
 for fwk in QtCore QtGui QtNetwork; do
         find "$app.app" -type f -print | while read x; do
-                current=$(otool -L "$x" | grep "$fwk.framework/" | awk '{ print $1; }')
+                current=$(otool -L "$x" | grep "$fwk" | grep ramework | awk '{ print $1; }')
                 [ -z "$current" ] && continue
                 echo "$x has $current"
                 relative=$(echo "$x" | sed -e "s,$app.app/Contents/,," \