diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2020-07-31 17:06:35 -0600 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2020-08-09 10:33:49 -0600 |
commit | d21eed76c48960707561c45c492c10a6a23c052e (patch) | |
tree | ebab09d099a699a24801fcfb4d7152cf82cc4a06 /src/engine/engine.cpp | |
parent | ad80d6dc10f9bd6cb6a084857a8fb546cc55e756 (diff) | |
download | wix-d21eed76c48960707561c45c492c10a6a23c052e.tar.gz wix-d21eed76c48960707561c45c492c10a6a23c052e.tar.bz2 wix-d21eed76c48960707561c45c492c10a6a23c052e.zip |
WIXFEAT:4763 Change "string" variable type to literal and add "formatted".
Diffstat (limited to 'src/engine/engine.cpp')
-rw-r--r-- | src/engine/engine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/engine/engine.cpp b/src/engine/engine.cpp index 36c58b49..71c37138 100644 --- a/src/engine/engine.cpp +++ b/src/engine/engine.cpp | |||
@@ -538,7 +538,7 @@ static HRESULT RunNormal( | |||
538 | // If a layout directory was specified on the command-line, set it as a well-known variable. | 538 | // If a layout directory was specified on the command-line, set it as a well-known variable. |
539 | if (pEngineState->command.wzLayoutDirectory && *pEngineState->command.wzLayoutDirectory) | 539 | if (pEngineState->command.wzLayoutDirectory && *pEngineState->command.wzLayoutDirectory) |
540 | { | 540 | { |
541 | hr = VariableSetString(&pEngineState->variables, BURN_BUNDLE_LAYOUT_DIRECTORY, pEngineState->command.wzLayoutDirectory, FALSE); | 541 | hr = VariableSetString(&pEngineState->variables, BURN_BUNDLE_LAYOUT_DIRECTORY, pEngineState->command.wzLayoutDirectory, FALSE, FALSE); |
542 | ExitOnFailure(hr, "Failed to set layout directory variable to value provided from command-line."); | 542 | ExitOnFailure(hr, "Failed to set layout directory variable to value provided from command-line."); |
543 | } | 543 | } |
544 | 544 | ||