From 69f46f7a462fdba230b03191853cea5d641af8c7 Mon Sep 17 00:00:00 2001 From: Marc-André Lureau Date: Thu, 24 Jan 2013 23:43:57 +0100 Subject: wixl: take pre-defined Action sequence --- 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 c89093f..0231c60 100644 --- a/tools/wixl/builder.vala +++ b/tools/wixl/builder.vala @@ -691,6 +691,9 @@ namespace Wixl { warn_if_fail (node.action == null); node.action = action; + if (action.Sequence != null) + node.sequence = int.parse (action.Sequence); + if (action.After != null) node.add_dep (table.get_action (action.After)); -- cgit