From 4493f859d73d45b54f9861b558570dc8993e31e9 Mon Sep 17 00:00:00 2001 From: Marc-André Lureau Date: Thu, 24 Jan 2013 23:43:29 +0100 Subject: wixl: name Custom actions correctly --- tools/wixl/builder.vala | 3 +++ 1 file changed, 3 insertions(+) (limited to 'tools') diff --git a/tools/wixl/builder.vala b/tools/wixl/builder.vala index 5db0f21..d30c7a2 100644 --- a/tools/wixl/builder.vala +++ b/tools/wixl/builder.vala @@ -687,6 +687,9 @@ namespace Wixl { var parent = action.parent as WixSequence; var table = db.tables.lookup (parent.name) as MsiTableSequence; + if (action.name == "Custom") + action.name = action.Action; + var node = table.get_action (action.name); warn_if_fail (node.action == null); node.action = action; -- cgit