From: James Teh Date: Tue, 25 Jan 2011 01:48:22 +0000 (+1000) Subject: sconstruct: If a certificate is provided, sign portable executables as well, even... X-Git-Tag: jpdev130418~1992 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=601ac80b728eca68b2cd27d3fcf05c71a0e2f682;p=nvdajp%2Fnvdajp.git sconstruct: If a certificate is provided, sign portable executables as well, even though they don't get uiAccess. --- diff --git a/sconstruct b/sconstruct index fdb494795..695845a7b 100755 --- a/sconstruct +++ b/sconstruct @@ -154,6 +154,7 @@ def NVDADistGenerator(target, source, env, for_signature): if env.get("uiAccess"): buildCmd.append("--enable-uiAccess") + if certFile: for prog in "nvda", "nvda_slave", "nvda_service": action.append(signExec[:-1] + [target[0].File("%s.exe" % prog)])