[msitools] Include wxi-local dir after user includes



commit 76d9fb2e0569e163b6919c1a9d657897da7933cb
Author: Marc-André Lureau <marcandre lureau gmail com>
Date:   Mon Jul 8 12:58:20 2013 +0200

    Include wxi-local dir after user includes

 tools/wixl/preprocessor.vala |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/tools/wixl/preprocessor.vala b/tools/wixl/preprocessor.vala
index b5b7f63..b65d4f4 100644
--- a/tools/wixl/preprocessor.vala
+++ b/tools/wixl/preprocessor.vala
@@ -519,9 +519,9 @@ namespace Wixl {
 
             string[] dirs = {};
             dirs += name;
-            dirs += loc.file.get_parent ().get_child (name).get_path ();
             foreach (var dir in includedirs)
                 dirs += dir.get_child (name).get_path ();
+            dirs += loc.file.get_parent ().get_child (name).get_path ();
 
             foreach (var inc in dirs) {
                 success = include_try (inc, writer);


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]