From 85f84060c4566d2a9e0867a1203751d77899547c Mon Sep 17 00:00:00 2001 From: Dominik Riebeling Date: Wed, 28 Jul 2010 21:05:16 +0000 Subject: Correct OS X post-build bundle copying. Make copying files to the bundle work when building other applications than Rockbox Utility by replacing a hardcoded workaround. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27606 a1c6a512-1295-4272-9138-f99709370657 --- utils/common/deploy.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'utils') diff --git a/utils/common/deploy.py b/utils/common/deploy.py index f4f3fac786..42d0375529 100755 --- a/utils/common/deploy.py +++ b/utils/common/deploy.py @@ -289,9 +289,10 @@ def macdeploy(versionstring, buildfolder): appbundle = buildfolder + "/" + progexe # workaround to Qt issues when building out-of-tree. Copy files into bundle. - sourcebase = buildfolder + re.sub('rbutilqt.pro$', '', project) + sourcebase = buildfolder + re.sub('[^/]+.pro$', '', project) + "/" + print sourcebase for src in bundlecopy: - shutil.copy(sourcebase + src, appbundle + bundlecopy[src]) + shutil.copy(sourcebase + src, appbundle + "/" + bundlecopy[src]) # end of Qt workaround output = subprocess.Popen(["macdeployqt", progexe, "-dmg"], stdout=subprocess.PIPE, cwd=buildfolder) -- cgit