Android: Fix listing of aliases in keystore

Task-number: QTCREATORBUG-11339
Change-Id: Id571813ae6c057b76a384c21a2330be908b3ba6e
Reviewed-by: BogDan Vatra <bogdan@kde.org>
This commit is contained in:
Daniel Teske
2014-01-24 12:28:04 +01:00
parent 66a1878558
commit bbcd3046e5
2 changed files with 2 additions and 2 deletions

View File

@@ -528,7 +528,7 @@ QAbstractItemModel *AndroidDeployQtStep::keystoreCertificates()
return 0;
params << m_keystorePasswd;
Utils::Environment env = Utils::Environment::systemEnvironment();
env.set(QLatin1String("LANG"), QLatin1String("C"));
env.set(QLatin1String("LC_ALL"), QLatin1String("C"));
keytoolProc.setProcessEnvironment(env.toProcessEnvironment());
keytoolProc.start(AndroidConfigurations::currentConfig().keytoolPath().toString(), params);
if (!keytoolProc.waitForStarted() || !keytoolProc.waitForFinished()) {