summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorMarc-André Lureau <marcandre.lureau@gmail.com>2013-11-08 15:07:48 +0100
committerMarc-André Lureau <marcandre.lureau@gmail.com>2013-11-08 15:07:53 +0100
commitfe1d1021499b3325a90dfe32b6c4bbbc6de7fd08 (patch)
tree33f9e735616b996be61b3e09443e0337f993d59d /tools
parente02b155b332df452a9df86984e11eb8a1772aa86 (diff)
downloadmsitools-fe1d1021499b3325a90dfe32b6c4bbbc6de7fd08.tar.gz
msitools-fe1d1021499b3325a90dfe32b6c4bbbc6de7fd08.tar.xz
msitools-fe1d1021499b3325a90dfe32b6c4bbbc6de7fd08.zip
Fix stable component GUID generation
Paolo probably overlooked the difference between WixlElement.parent, and Vala 'base'
Diffstat (limited to 'tools')
-rw-r--r--tools/wixl/wix.vala2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/wixl/wix.vala b/tools/wixl/wix.vala
index 6566920..5e290fb 100644
--- a/tools/wixl/wix.vala
+++ b/tools/wixl/wix.vala
@@ -1072,7 +1072,7 @@ namespace Wixl {
if (key == null)
throw new Wixl.Error.FAILED("a child is needed to generate a component GUID");
- return parent.full_path (r) + "/" + key.path_name ();
+ return base.full_path (r) + "/" + key.path_name ();
}
}