Skip to content

Commit

Permalink
Be a bit more verbose.
Browse files Browse the repository at this point in the history
  • Loading branch information
vasole committed Apr 5, 2018
1 parent 6f6bb16 commit 6811e8c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
5 changes: 5 additions & 0 deletions cx_setup.py
Expand Up @@ -353,6 +353,7 @@ def dir_cleaner(directory):
# silx gui._qt module needs to be patched to get rid of uic
initFile = os.path.join(install_dir, "silx", "gui", "qt", "_qt.py")
print("###################################################################")
print("Patching silx file")
print(initFile)
print("###################################################################")
f = open(initFile, "r")
Expand All @@ -368,6 +369,10 @@ def dir_cleaner(directory):
if OPENCL:
# pyopencl __init__.py needs to be patched
initFile = os.path.join(install_dir, "pyopencl", "__init__.py")
print("###################################################################")
print("Patching pyopencl file")
print(initFile)
print("###################################################################")
f = open(initFile, "r")
content = f.readlines()
f.close()
Expand Down
2 changes: 2 additions & 0 deletions py2app_setup.py
Expand Up @@ -140,6 +140,7 @@
# silx gui._qt module needs to be patched to get rid of uic
initFile = os.path.join(patching_dir, "silx", "gui", "qt", "_qt.py")
print("###################################################################")
print("Patching silx file")
print(initFile)
print("###################################################################")
f = open(initFile, "r")
Expand All @@ -156,6 +157,7 @@
# pyopencl __init__.py needs to be patched
initFile = os.path.join(patching_dir, "pyopencl", "__init__.py")
print("###################################################################")
print("Patching pyopencl file")
print(initFile)
print("###################################################################")
f = open(initFile, "r")
Expand Down

0 comments on commit 6811e8c

Please sign in to comment.