summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rw-r--r--tools/wixl/preprocessor.vala2
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);