summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarc-André Lureau <marcandre.lureau@gmail.com>2013-07-08 12:58:20 +0200
committerMarc-André Lureau <marcandre.lureau@gmail.com>2013-07-08 12:58:23 +0200
commit76d9fb2e0569e163b6919c1a9d657897da7933cb (patch)
tree7cf607d1d15de658991d5243ef30fe505a9bdadf
parentb2c86f7e29b08037503d903166dc73421b4499b0 (diff)
downloadmsitools-76d9fb2e0569e163b6919c1a9d657897da7933cb.tar.gz
msitools-76d9fb2e0569e163b6919c1a9d657897da7933cb.tar.xz
msitools-76d9fb2e0569e163b6919c1a9d657897da7933cb.zip
Include wxi-local dir after user includes
-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);