Mercurial > hg > sonic-visualiser
comparison deploy/osx/copy-qt.sh @ 1432:2451e7bb90af levelpanwidget
Small OSX fixes
author | Chris Cannam |
---|---|
date | Thu, 15 Dec 2016 11:02:25 +0000 |
parents | 1e63105fc82d |
children | f7acd0c9ee8d |
comparison
equal
deleted
inserted
replaced
1431:f013210eeceb | 1432:2451e7bb90af |
---|---|
27 mkdir -p "$pdir" | 27 mkdir -p "$pdir" |
28 | 28 |
29 echo | 29 echo |
30 echo "Copying frameworks..." | 30 echo "Copying frameworks..." |
31 for fwk in $frameworks; do | 31 for fwk in $frameworks; do |
32 if [ ! -d "$qtdir/lib/$fwk.framework" ]; then | |
33 if [ "$fwk" = "QtDBus" ]; then | |
34 echo "QtDBus.framework not found, assuming Qt was built without DBus support" | |
35 continue | |
36 fi | |
37 fi | |
32 cp -v "$qtdir/lib/$fwk.framework/$fwk" "$fdir" || exit 2 | 38 cp -v "$qtdir/lib/$fwk.framework/$fwk" "$fdir" || exit 2 |
33 done | 39 done |
34 | 40 |
35 echo "Done" | 41 echo "Done" |
36 | 42 |