summaryrefslogtreecommitdiff
path: root/scp2/inc
diff options
context:
space:
mode:
authorAndras Timar <andras.timar@collabora.com>2013-09-10 09:10:32 +0200
committerAndras Timar <andras.timar@collabora.com>2013-09-10 09:10:32 +0200
commita41d72333d15c609f0441bd7df1722b31297756d (patch)
tree8a21752ccbf8a716f5d0c13fcae78f03d36e82b2 /scp2/inc
parentf5248b4f4e83d491347749cb6731a12a9509b560 (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-xscp2/inc/macros.inc4
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) \