diff options
-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 |