diff options
author | Colin Walters <walters@verbum.org> | 2010-11-11 09:54:35 -0500 |
---|---|---|
committer | Colin Walters <walters@verbum.org> | 2010-11-11 09:54:35 -0500 |
commit | 270677b2a8bbea473bb0904df35bab6340758bb9 (patch) | |
tree | 0c0f7a6ca361241dadefe7778b2afe5224294f18 /common.mk | |
parent | 84608743897ef60071757c09216f60f8861f504e (diff) | |
download | gobject-introspection-270677b2a8bbea473bb0904df35bab6340758bb9.tar.gz |
build: Fix scanner/compiler to look in $(top_builddir) now
Since we're nonrecursive, the build artifacts live in $(top_builddir),
so look there now for files like Gio-2.0.gir.
Diffstat (limited to 'common.mk')
-rw-r--r-- | common.mk | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -16,13 +16,13 @@ INTROSPECTION_SCANNER_ARGS = \ --verbose \ -I$(top_srcdir) \ --add-include-path=$(srcdir) \ - --add-include-path=$(top_srcdir)/gir \ + --add-include-path=$(top_srcdir) \ --add-include-path=$(builddir) \ - --add-include-path=$(top_builddir)/gir + --add-include-path=$(top_builddir) INTROSPECTION_COMPILER = $(top_builddir)/g-ir-compiler$(EXEEXT) INTROSPECTION_COMPILER_ARGS = \ --includedir=$(srcdir) \ - --includedir=$(top_srcdir)/gir \ + --includedir=$(top_srcdir) \ --includedir=$(builddir) \ - --includedir=$(top_builddir)/gir + --includedir=$(top_builddir) |