From: Carl Hetherington Date: Mon, 26 Nov 2018 01:34:55 +0000 (+0000) Subject: Fix accidentally-mangled wscript. X-Git-Tag: v2.13.75^0 X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=12b4381bd30cb81c894af77d58ebec07220631be Fix accidentally-mangled wscript. --- diff --git a/wscript b/wscript index aa99f3b88..de9c82d2c 100644 --- a/wscript +++ b/wscript @@ -40,7 +40,7 @@ last_version = subprocess.Popen(shlex.split('git describe --tags --abbrev=0'), s if this_version == '': VERSION = '%sdevel' % last_version[1:].strip() else: -VERSION = '2.13.73devel' + VERSION = this_version[1:].strip() def options(opt): opt.load('compiler_cxx')