summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorMarc-André Lureau <marcandre.lureau@gmail.com>2013-01-10 17:51:21 +0100
committerMarc-André Lureau <marcandre.lureau@gmail.com>2013-01-11 13:10:38 +0100
commit9c4ef6a6fcdeaf6d9e93e2986e8165374a6e9cf8 (patch)
treef2320dba5a8d87226bdd84ff40cc8dff9e78dae3 /tools
parent517c4d1d2e09b585cc9de97d40adb2487f9e07e2 (diff)
downloadmsitools-9c4ef6a6fcdeaf6d9e93e2986e8165374a6e9cf8.tar.gz
msitools-9c4ef6a6fcdeaf6d9e93e2986e8165374a6e9cf8.tar.xz
msitools-9c4ef6a6fcdeaf6d9e93e2986e8165374a6e9cf8.zip
wixl: generate UUID for component Guid=*
Diffstat (limited to 'tools')
-rw-r--r--tools/wixl/builder.vala2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/wixl/builder.vala b/tools/wixl/builder.vala
index 5601371..701bba4 100644
--- a/tools/wixl/builder.vala
+++ b/tools/wixl/builder.vala
@@ -333,7 +333,7 @@ namespace Wixl {
attr |= ComponentAttribute.REGISTRY_KEY_PATH;
var parent = resolve<WixDirectory> (comp.parent);
- db.table_component.add (comp.Id, add_braces (comp.Guid), parent.Id, attr,
+ db.table_component.add (comp.Id, get_uuid (comp.Guid), parent.Id, attr,
comp.key != null ? comp.key.Id : null);
}