summaryrefslogtreecommitdiff
path: root/cscript
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2018-04-08 01:40:58 +0100
committerCarl Hetherington <cth@carlh.net>2018-04-08 01:40:58 +0100
commit3450ad7702b908497e5c4f98d9dc152916ce7302 (patch)
treeadb006b86fb8d72b793208a856233e97ab0764ed /cscript
parent7007f5693d45901ec67c36a331109fb9effcddd8 (diff)
Improve naming of Windows zip files.
Diffstat (limited to 'cscript')
-rw-r--r--cscript5
1 files changed, 3 insertions, 2 deletions
diff --git a/cscript b/cscript
index df76d159..99a7aa0a 100644
--- a/cscript
+++ b/cscript
@@ -87,8 +87,9 @@ def package(target, version):
'libxml2-2.dll', 'libxmlsec1-openssl.dll', 'libxmlsec1.dll', 'zlib1.dll', 'libglib-2.0-0.dll', 'libgmodule-2.0-0.dll', 'libgobject-2.0-0.dll',
'libsigc-2.0-0.dll', 'libiconv-2.dll', 'liblzma-5.dll', 'libxslt-1.dll', 'libintl-8.dll', 'libpcre-1.dll', 'libffi-6.dll']:
shutil.copyfile('%s/bin/%s' % (target.windows_prefix, f), os.path.join(d, f))
- target.command('cd build && zip -9 -r libdcp-%s.zip libdcp-%s' % (version, version))
- return os.path.abspath('build/libdcp-%s.zip' % version)
+ zip = 'libdcp-windows-%d.%s.zip' % (target.bits, version)
+ target.command('cd build && zip -9 -r %s libdcp-%s' % (zip, version))
+ return os.path.abspath('build/%s' % zip)
def make_doxygen(target):
os.makedirs('build/doc')