Fix library path for 64bit natives

This commit is contained in:
Petr Mrázek 2014-01-21 00:50:18 +01:00
parent 222d3c0dc5
commit b182f12c20

View File

@ -190,7 +190,7 @@ bool OneSixLibrary::extractTo(QString target_dir)
cooked_storage = storage;
cooked_storage.replace("${arch}", "64");
origin = PathCombine("libraries", cooked_storage);
target_dir_cooked = PathCombine(target_dir, "32");
target_dir_cooked = PathCombine(target_dir, "64");
if(!ensureFolderPathExists(target_dir_cooked))
{
QLOG_ERROR() << "Couldn't create folder " + target_dir_cooked;