mirror of
https://github.com/acidanthera/audk.git
synced 2025-04-08 17:05:09 +02:00
BaseTools: Pkcs7Sign Tool to support OPENSSL_PATH has space
Update Pkcs7Sign Tool to support the case that OPENSSL_PATH has space characters. Cc: Liming Gao <liming.gao@intel.com> Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Yonghong Zhu <yonghong.zhu@intel.com> Reviewed-by: Liming Gao <liming.gao@intel.com>
This commit is contained in:
parent
3337eefb49
commit
b10515378d
@ -102,6 +102,8 @@ if __name__ == '__main__':
|
||||
try:
|
||||
OpenSslPath = os.environ['OPENSSL_PATH']
|
||||
OpenSslCommand = os.path.join(OpenSslPath, OpenSslCommand)
|
||||
if ' ' in OpenSslCommand:
|
||||
OpenSslCommand = '"' + OpenSslCommand + '"'
|
||||
except:
|
||||
pass
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user