mirror of
https://github.com/reactos/reactos.git
synced 2026-06-08 17:02:56 +08:00
[WINESYNC] msi: Resolve source when executing InstallFiles.
Signed-off-by: Zebediah Figura <z.figura12@gmail.com> Signed-off-by: Hans Leidekker <hans@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org> wine commit id 536a86f21ff0f8432309225b61695138be95cb3a by Zebediah Figura <z.figura12@gmail.com>
This commit is contained in:
@@ -357,6 +357,8 @@ UINT ACTION_InstallFiles(MSIPACKAGE *package)
|
||||
UINT rc = ERROR_SUCCESS;
|
||||
MSIFILE *file;
|
||||
|
||||
msi_set_sourcedir_props(package, FALSE);
|
||||
|
||||
schedule_install_files(package);
|
||||
mi = msi_alloc_zero( sizeof(MSIMEDIAINFO) );
|
||||
|
||||
|
||||
@@ -1328,6 +1328,7 @@ static const CHAR sr_install_exec_seq_dat[] =
|
||||
"sourcedir_unset\tSourceDir\t700\n"
|
||||
"ResolveSource\tRESOLVE_SOURCE\t800\n"
|
||||
"ProcessComponents\tPROCESS_COMPONENTS\t800\n"
|
||||
"InstallFiles\tINSTALL_FILES\t800\n"
|
||||
"sourcedir_set\tNOT SourceDir\t900\n"
|
||||
"InstallFinalize\t\t1000\n";
|
||||
|
||||
@@ -6166,6 +6167,10 @@ static void test_source_resolution(void)
|
||||
r = MsiInstallProductA(msifile, "PROCESS_COMPONENTS=1");
|
||||
ok(r == ERROR_SUCCESS, "got %u\n", r);
|
||||
|
||||
r = MsiInstallProductA(msifile, "INSTALL_FILES=1");
|
||||
ok(r == ERROR_SUCCESS, "got %u\n", r);
|
||||
|
||||
delete_pf_files();
|
||||
delete_test_files();
|
||||
DeleteFileA(msifile);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user