summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmmanuele Bassi <ebassi@gnome.org>2015-10-04 14:08:49 +0100
committerEmmanuele Bassi <ebassi@gnome.org>2015-10-04 14:08:49 +0100
commitfe8d0dd41823770c4283e7dbcc4b7ca1ad0d6eb9 (patch)
tree3e9f33aa2fc8b2359787f7692099653550c9ee81
parent0bb2901aa5d944e7e588a4fd9f57d3be96354dc5 (diff)
downloadlibgdata-fe8d0dd41823770c4283e7dbcc4b7ca1ad0d6eb9.tar.gz
build: Fix builddir != srcdir failure
The split symbol files are in the srcdir path, not in the builddir one.
-rw-r--r--Makefile.am6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.am b/Makefile.am
index cb8d4e96..71f2371e 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -535,11 +535,11 @@ gdata_libgdata_la_LDFLAGS = \
$(AM_LDFLAGS)
# Symbols file
-gdata/gdata.symbols: gdata/gdata-core.symbols gdata/gdata-goa.symbols
+gdata/gdata.symbols: $(top_srcdir)/gdata/gdata-core.symbols $(top_srcdir)/gdata/gdata-goa.symbols
if ENABLE_GOA
- $(AM_V_GEN)cat gdata/gdata-core.symbols gdata/gdata-goa.symbols > $@
+ $(AM_V_GEN)cat $(top_srcdir)/gdata/gdata-core.symbols $(top_srcdir)/gdata/gdata-goa.symbols > $@
else
- $(AM_V_GEN)cat gdata/gdata-core.symbols > $@
+ $(AM_V_GEN)cat $(top_srcdir)/gdata/gdata-core.symbols > $@
endif
EXTRA_gdata_libgdata_la_DEPENDENCIES = gdata/gdata.symbols