diff options
| author | Marc-André Lureau <marcandre.lureau@gmail.com> | 2013-01-14 18:29:30 +0100 |
|---|---|---|
| committer | Marc-André Lureau <marcandre.lureau@gmail.com> | 2013-01-15 20:05:56 +0100 |
| commit | 54d66f93f145ba662278ab8a76ac016fce5b2b2a (patch) | |
| tree | 814631bf8c30f99f5c365340f7fd5d16ba626a4d | |
| parent | 14c976e479e6804b1671fb1f2372b22874ddf21d (diff) | |
wixl: include global wix directory by default
| -rw-r--r-- | Makefile.am | 2 | ||||
| -rw-r--r-- | tools/wixl/builder.vala | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 6ba0a49..b632dc7 100644 --- a/Makefile.am +++ b/Makefile.am @@ -66,7 +66,7 @@ wixl_CPPFLAGS = \ $(WIXL_CFLAGS) \ -DG_LOG_DOMAIN=\""wixl"\" \ -DLOCALEDIR=\""$(localedir)"\" \ - -DPKGDATADIR=\""$(pkgdatadir)"\" \ + -DPKGDATADIR=\""$(datadir)/wixl-0.1/"\" \ -DPKGLIBDIR=\""$(pkglibdir)"\" \ $(NULL) diff --git a/tools/wixl/builder.vala b/tools/wixl/builder.vala index a0bc91f..1c0ea5d 100644 --- a/tools/wixl/builder.vala +++ b/tools/wixl/builder.vala @@ -6,6 +6,7 @@ namespace Wixl { add_path ("."); foreach (var i in includedirs) this.includedirs.append (File.new_for_path (i)); + this.includedirs.append (File.new_for_path (Config.PKGDATADIR + "include")); } WixRoot root; |
