summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorMarc-André Lureau <marcandre.lureau@gmail.com>2013-01-24 23:43:57 +0100
committerMarc-André Lureau <marcandre.lureau@gmail.com>2013-01-24 23:50:31 +0100
commit69f46f7a462fdba230b03191853cea5d641af8c7 (patch)
treef68239674ea4f131966ab33e1e56ce6c26b49b3f /tools
parent696c5f4335264dedbdf612ddf73b38d664bc1684 (diff)
downloadmsitools-69f46f7a462fdba230b03191853cea5d641af8c7.tar.gz
msitools-69f46f7a462fdba230b03191853cea5d641af8c7.tar.xz
msitools-69f46f7a462fdba230b03191853cea5d641af8c7.zip
wixl: take pre-defined Action sequence
Diffstat (limited to 'tools')
-rw-r--r--tools/wixl/builder.vala3
1 files changed, 3 insertions, 0 deletions
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));