diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2022-06-03 17:50:50 -0500 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2022-06-07 19:44:36 -0500 |
commit | 68ec803fc7f48bb0e0463dc45f6ce40e1f07dbf5 (patch) | |
tree | b40803c4ba8d5312ed3d95c66778c2bc87cf0de9 /src/burn/engine/apply.cpp | |
parent | 8810aa8908ed7887616d86dd5fb821fcfa92f444 (diff) | |
download | wix-68ec803fc7f48bb0e0463dc45f6ce40e1f07dbf5.tar.gz wix-68ec803fc7f48bb0e0463dc45f6ce40e1f07dbf5.tar.bz2 wix-68ec803fc7f48bb0e0463dc45f6ce40e1f07dbf5.zip |
Make sure base paths are fully qualified in Burn.
Diffstat (limited to 'src/burn/engine/apply.cpp')
-rw-r--r-- | src/burn/engine/apply.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/burn/engine/apply.cpp b/src/burn/engine/apply.cpp index 4ebed191..048cd98b 100644 --- a/src/burn/engine/apply.cpp +++ b/src/burn/engine/apply.cpp | |||
@@ -1371,7 +1371,7 @@ static HRESULT LayoutBundle( | |||
1371 | ExitOnFailure(hr, "Failed to get path to bundle to layout."); | 1371 | ExitOnFailure(hr, "Failed to get path to bundle to layout."); |
1372 | } | 1372 | } |
1373 | 1373 | ||
1374 | hr = PathConcatRelativeToBase(pContext->wzLayoutDirectory, wzExecutableName, &sczDestinationPath); | 1374 | hr = PathConcatRelativeToFullyQualifiedBase(pContext->wzLayoutDirectory, wzExecutableName, &sczDestinationPath); |
1375 | ExitOnFailure(hr, "Failed to concat layout path for bundle."); | 1375 | ExitOnFailure(hr, "Failed to concat layout path for bundle."); |
1376 | 1376 | ||
1377 | // If the destination path is the currently running bundle, bail. | 1377 | // If the destination path is the currently running bundle, bail. |