Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
3d2de3d5
Commit
3d2de3d5
authored
Jan 04, 2006
by
Mike McCormack
Committed by
Alexandre Julliard
Jan 04, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msiexec: Ignore the TRANSFORMS variable.
Ignore the TRANSFORMS variable when building a list of transforms for advertising. The variable is used to apply transforms when installing.
parent
e534e772
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
6 deletions
+1
-6
msiexec.c
programs/msiexec/msiexec.c
+1
-6
No files found.
programs/msiexec/msiexec.c
View file @
3d2de3d5
...
...
@@ -452,7 +452,6 @@ int main(int argc, char **argv)
DWORD
RepairMode
=
0
;
DWORD
AdvertiseMode
=
0
;
LPWSTR
Transforms
=
NULL
;
struct
string_list
*
transform_list
=
NULL
;
LANGID
Language
=
0
;
...
...
@@ -658,10 +657,6 @@ int main(int argc, char **argv)
WINE_TRACE
(
"argvW[%d] = %s
\n
"
,
i
,
wine_dbgstr_w
(
argvW
[
i
]));
StringListAppend
(
&
transform_list
,
argvW
[
i
]);
}
else
if
(
!
msi_strprefix
(
argvW
[
i
],
"TRANSFORMS="
))
{
StringListAppend
(
&
transform_list
,
argvW
[
i
]
+
11
);
}
else
if
(
!
msi_strequal
(
argvW
[
i
],
"/g"
))
{
i
++
;
...
...
@@ -858,7 +853,6 @@ int main(int argc, char **argv)
MsiSetInternalUI
(
InstallUILevel
,
NULL
);
Properties
=
build_properties
(
property_list
);
Transforms
=
build_transforms
(
transform_list
);
if
(
FunctionInstallAdmin
&&
FunctionPatch
)
FunctionInstall
=
FALSE
;
...
...
@@ -880,6 +874,7 @@ int main(int argc, char **argv)
}
else
if
(
FunctionAdvertise
)
{
LPWSTR
Transforms
=
build_transforms
(
property_list
);
ReturnCode
=
MsiAdvertiseProductW
(
PackageName
,
(
LPWSTR
)
AdvertiseMode
,
Transforms
,
Language
);
}
else
if
(
FunctionPatch
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment