diff options
author | Andras Timar <andras.timar@collabora.com> | 2013-09-10 09:10:32 +0200 |
---|---|---|
committer | Andras Timar <andras.timar@collabora.com> | 2013-09-10 09:10:32 +0200 |
commit | a41d72333d15c609f0441bd7df1722b31297756d (patch) | |
tree | 8a21752ccbf8a716f5d0c13fcae78f03d36e82b2 /scp2/inc | |
parent | f5248b4f4e83d491347749cb6731a12a9509b560 (diff) |
kill VERSION_INDEPENDENT_COMP_ID
Version independent ComponentID in Component table of MSI means
that the GUID is calculated from the Component name only, the
PRODUCTVERSION is not concatenated to the name. Providing that
name is constant in all versions, the resulting GUID would be
the same e.g. for 4.0, 4.1, 4.2 etc. But what is it good for?
Faster upgrades maybe? But name can also change, we did not
pay attention to keep it constant. So in order to help scp2
cleanup, VERSION_INDEPENDENT_COMP_ID flag was obsoleted and
removed.
Change-Id: I8e1ee450524b02f07d0b0553f6b82d0321dbddcf
Diffstat (limited to 'scp2/inc')
-rwxr-xr-x | scp2/inc/macros.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scp2/inc/macros.inc b/scp2/inc/macros.inc index 10805403c586..deb4c3111427 100755 --- a/scp2/inc/macros.inc +++ b/scp2/inc/macros.inc @@ -494,7 +494,7 @@ End LIB_FILE_BODY; \ Dir = SCP2_URE_DL_DIR; \ Name = name; \ - Styles = (PACKED, VERSION_INDEPENDENT_COMP_ID); \ + Styles = (PACKED); \ End #define URE_EXECUTABLE(id,name) \ @@ -502,7 +502,7 @@ End BIN_FILE_BODY; \ Dir = GID_DIR_URE_BIN; \ Name = name; \ - Styles = (PACKED, VERSION_INDEPENDENT_COMP_ID); \ + Styles = (PACKED); \ End #define LIBO_EXECUTABLE(id,name) \ |