From e31a851ca76754595a20192b2a4c6674397e7f44 Mon Sep 17 00:00:00 2001 From: Phil Date: Fri, 6 Aug 2010 11:53:22 +0200 Subject: [PATCH] Fixed executable zip headers offset (zip -A) (ticket #320) --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 92a0c53cf..779c4b7af 100755 --- a/setup.py +++ b/setup.py @@ -25,6 +25,7 @@ def make_ezipfile(base_name, base_dir, verbose=0, dry_run=0): break f.write(data) f.close() + os.system("zip -A '%s'" % fname) of.close() os.unlink(ofname) os.chmod(fname,0755)