From 52f89268696fd61ae8e510d80bab3dc6424a1410 Mon Sep 17 00:00:00 2001 From: Marc-André Lureau Date: Tue, 13 Aug 2013 18:25:32 +0200 Subject: wixl: schedule AppSearch when necessary --- tools/wixl/builder.vala | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'tools/wixl') diff --git a/tools/wixl/builder.vala b/tools/wixl/builder.vala index 356652f..4de679a 100644 --- a/tools/wixl/builder.vala +++ b/tools/wixl/builder.vala @@ -175,7 +175,8 @@ namespace Wixl { add (MSIDefault.Action.RemoveFolders); add (MSIDefault.Action.CreateFolders); } - + if (db.table_app_search.records.length () > 0) + add (MSIDefault.Action.AppSearch); table.add_sorted_actions (); // InstallUISequence @@ -191,6 +192,8 @@ namespace Wixl { } if (db.table_launch_condition.records.length () > 0) add (MSIDefault.Action.LaunchConditions); + if (db.table_app_search.records.length () > 0) + add (MSIDefault.Action.AppSearch); table.add_sorted_actions (); } -- cgit