diff options
author | Ross Burton <ross@linux.intel.com> | 2010-04-15 11:43:19 +0100 |
---|---|---|
committer | Ross Burton <ross@linux.intel.com> | 2010-04-15 11:43:19 +0100 |
commit | 05449d2054e9f0423a779e0424159978f0b3a7c8 (patch) | |
tree | 3ed987277e03cd4fb667e30994003d3c1dc081e7 | |
parent | 2200871524d6e89abe7139222d9e467cec2cd184 (diff) |
Fix introspection generation in distchecklibrest-0.6.3
-rw-r--r-- | rest-extras/Makefile.am | 4 | ||||
-rw-r--r-- | rest/Makefile.am | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/rest-extras/Makefile.am b/rest-extras/Makefile.am index d96030c..c00fba6 100644 --- a/rest-extras/Makefile.am +++ b/rest-extras/Makefile.am @@ -55,8 +55,8 @@ RestExtras-@API_VERSION@.gir: $(INTROSPECTION_SCANNER) librest-extras-@API_VERSI --pkg libxml-2.0 \ --output $@ \ -I$(top_srcdir) \ - $(lib_headers) \ - $(lib_sources) + $(addprefix $(top_srcdir)/rest-extras/, $(lib_headers)) \ + $(addprefix $(top_srcdir)/rest-extras/, $(lib_sources)) BUILT_GIRSOURCES += RestExtras-@API_VERSION@.gir diff --git a/rest/Makefile.am b/rest/Makefile.am index 8c5630a..c7bfc27 100644 --- a/rest/Makefile.am +++ b/rest/Makefile.am @@ -58,8 +58,8 @@ Rest-@API_VERSION@.gir: $(INTROSPECTION_SCANNER) librest-@API_VERSION@.la --pkg libxml-2.0 \ --output $@ \ -I$(top_srcdir) \ - $(lib_headers) \ - $(lib_sources) + $(addprefix $(top_srcdir)/rest/, $(lib_headers)) \ + $(addprefix $(top_srcdir)/rest/, $(lib_sources)) BUILT_GIRSOURCES += Rest-@API_VERSION@.gir |