Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/admin
diff options
context:
space:
mode:
authorDominik Schmidt <dev@dominik-schmidt.de>2018-10-09 18:52:06 +0300
committerDominik Schmidt <domme@tomahawk-player.org>2018-10-11 14:09:35 +0300
commitba2c4d1b211bb0acdb56260371d35f6286e26295 (patch)
treeae059424b8818b8afd6d5fb4cf078888f627c0ff /admin
parent5c3dc990cafd344504bb2e2912a0239d4bd83604 (diff)
Add more debug output to macdeployqt.py
Diffstat (limited to 'admin')
-rwxr-xr-xadmin/osx/macdeployqt.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/admin/osx/macdeployqt.py b/admin/osx/macdeployqt.py
index 378afcc87..4685038c1 100755
--- a/admin/osx/macdeployqt.py
+++ b/admin/osx/macdeployqt.py
@@ -235,6 +235,7 @@ def FixBinary(path):
FixLibraryInstallPath(library, path)
def CopyLibrary(path):
+ print "CopyLibrary:", path
new_path = os.path.join(binary_dir, os.path.basename(path))
args = ['ditto', '--arch=x86_64', path, new_path]
commands.append(args)
@@ -243,6 +244,7 @@ def CopyLibrary(path):
return new_path
def CopyPlugin(path, subdir):
+ print "CopyPlugin:", path, subdir
new_path = os.path.join(plugins_dir, subdir, os.path.basename(path))
args = ['mkdir', '-p', os.path.dirname(new_path)]
commands.append(args)
@@ -253,8 +255,8 @@ def CopyPlugin(path, subdir):
return new_path
def CopyFramework(source_dylib):
- parts = source_dylib.split(os.sep)
print "CopyFramework:", source_dylib
+ parts = source_dylib.split(os.sep)
for i, part in enumerate(parts):
matchObj = re.match(r'(\w+\.framework)', part)
if matchObj: