Correct typo in destination path variable names
A couple of variables contained "Destianation" instead of "Destination" Change-Id: I98a15652347d1b0dad640bc49925ec296830147b Reviewed-by: Tor Arne Vestbø <tor.arne.vestbo@qt.io> (cherry picked from commit 60b069471dda1ae3cacca8cf8cfdd8a140e63563)
This commit is contained in:
parent
85d28ea391
commit
3602a95a8c
@ -768,14 +768,14 @@ QString copyFramework(const FrameworkInfo &framework, const QString path)
|
|||||||
|
|
||||||
// Copy Resources/, Libraries/ and Helpers/
|
// Copy Resources/, Libraries/ and Helpers/
|
||||||
const QString resourcesSourcePath = framework.frameworkPath + "/Resources";
|
const QString resourcesSourcePath = framework.frameworkPath + "/Resources";
|
||||||
const QString resourcesDestianationPath = frameworkDestinationDirectory + "/Versions/" + framework.version + "/Resources";
|
const QString resourcesDestinationPath = frameworkDestinationDirectory + "/Versions/" + framework.version + "/Resources";
|
||||||
recursiveCopy(resourcesSourcePath, resourcesDestianationPath);
|
recursiveCopy(resourcesSourcePath, resourcesDestinationPath);
|
||||||
const QString librariesSourcePath = framework.frameworkPath + "/Libraries";
|
const QString librariesSourcePath = framework.frameworkPath + "/Libraries";
|
||||||
const QString librariesDestianationPath = frameworkDestinationDirectory + "/Versions/" + framework.version + "/Libraries";
|
const QString librariesDestinationPath = frameworkDestinationDirectory + "/Versions/" + framework.version + "/Libraries";
|
||||||
bool createdLibraries = recursiveCopy(librariesSourcePath, librariesDestianationPath);
|
bool createdLibraries = recursiveCopy(librariesSourcePath, librariesDestinationPath);
|
||||||
const QString helpersSourcePath = framework.frameworkPath + "/Helpers";
|
const QString helpersSourcePath = framework.frameworkPath + "/Helpers";
|
||||||
const QString helpersDestianationPath = frameworkDestinationDirectory + "/Versions/" + framework.version + "/Helpers";
|
const QString helpersDestinationPath = frameworkDestinationDirectory + "/Versions/" + framework.version + "/Helpers";
|
||||||
bool createdHelpers = recursiveCopy(helpersSourcePath, helpersDestianationPath);
|
bool createdHelpers = recursiveCopy(helpersSourcePath, helpersDestinationPath);
|
||||||
|
|
||||||
// Create symlink structure. Links at the framework root point to Versions/Current/
|
// Create symlink structure. Links at the framework root point to Versions/Current/
|
||||||
// which again points to the actual version:
|
// which again points to the actual version:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user