Skip to content

Commit

Permalink
disable exe strip
Browse files Browse the repository at this point in the history
  • Loading branch information
boussaffawalid committed Dec 16, 2016
1 parent 2292ea0 commit 242eaa2
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions windows/setup_py2exe.py
Original file line number Diff line number Diff line change
Expand Up @@ -168,11 +168,11 @@ def check_file_for_string(filename, string):
for file in files:
compress(UPX_EXE, UPX_OPTS, file)

logger.info('Stripping executables')
files = recursive_glob('dist', ['*.dll', '*.exe'])
for file in files:
cmd = 'strip --strip-all ' + file
run_cmd(cmd)
#logger.info('Stripping executables')
#files = recursive_glob('dist', ['*.dll', '*.exe'])
#for file in files:
# cmd = 'strip --strip-all ' + file
# run_cmd(cmd)


logger.info('Purging unnecessary GTK+ files')
Expand Down

0 comments on commit 242eaa2

Please sign in to comment.