From fe1d1021499b3325a90dfe32b6c4bbbc6de7fd08 Mon Sep 17 00:00:00 2001 From: Marc-André Lureau Date: Fri, 8 Nov 2013 15:07:48 +0100 Subject: Fix stable component GUID generation Paolo probably overlooked the difference between WixlElement.parent, and Vala 'base' --- tools/wixl/wix.vala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools') 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 (); } } -- cgit