From: Michael Curran Date: Wed, 21 Mar 2012 23:59:59 +0000 (+1000) Subject: sconstruct: copyright info should always be hard-coded by NVDA's versionInfo.copyright X-Git-Tag: jpdev130418~987^2~12 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=e7cdf435bbe2deefe19312f1a1c74eea2d57b832;p=nvdajp%2Fnvdajp.git sconstruct: copyright info should always be hard-coded by NVDA's versionInfo.copyright --- diff --git a/sconstruct b/sconstruct index 8f9cfe39e..f9b3aeb17 100755 --- a/sconstruct +++ b/sconstruct @@ -75,7 +75,6 @@ keyCommandsLangBlacklist=set([]) vars = Variables() vars.Add("version", "The version of this build", versionInfo.version) -vars.Add("copyright", "The copyright string of this build", versionInfo.copyright) vars.Add(BoolVariable("release", "Whether this is a release version", False)) vars.Add("publisher", "The publisher of this build", versionInfo.publisher) vars.Add(PathVariable("certFile", "The certificate file with which to sign executables", "", @@ -96,6 +95,7 @@ if len(unknown)>0: print "Unknown commandline variables: %s"%unknown Exit(1) +env["copyright"]=versionInfo.copyright version = env["version"] release = env["release"] publisher = env["publisher"]