diff options
author | Colin Walters <walters@verbum.org> | 2010-11-11 09:58:57 -0500 |
---|---|---|
committer | Colin Walters <walters@verbum.org> | 2010-11-11 09:58:57 -0500 |
commit | e61eb280eba703dd8ca3be734fa9b43d5a5d1112 (patch) | |
tree | 54195329eab6eb434265560bd8bc60fc2254ac7d /common.mk | |
parent | 270677b2a8bbea473bb0904df35bab6340758bb9 (diff) | |
download | gobject-introspection-e61eb280eba703dd8ca3be734fa9b43d5a5d1112.tar.gz |
Fix previous commit
..but we still should be looking for pre-written girs in gir/.
Diffstat (limited to 'common.mk')
-rw-r--r-- | common.mk | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -16,13 +16,13 @@ INTROSPECTION_SCANNER_ARGS = \ --verbose \ -I$(top_srcdir) \ --add-include-path=$(srcdir) \ - --add-include-path=$(top_srcdir) \ + --add-include-path=$(top_srcdir)/gir \ --add-include-path=$(builddir) \ --add-include-path=$(top_builddir) INTROSPECTION_COMPILER = $(top_builddir)/g-ir-compiler$(EXEEXT) INTROSPECTION_COMPILER_ARGS = \ --includedir=$(srcdir) \ - --includedir=$(top_srcdir) \ + --includedir=$(top_srcdir)/gir \ --includedir=$(builddir) \ --includedir=$(top_builddir) |