From fe8d0dd41823770c4283e7dbcc4b7ca1ad0d6eb9 Mon Sep 17 00:00:00 2001 From: Emmanuele Bassi Date: Sun, 4 Oct 2015 14:08:49 +0100 Subject: build: Fix builddir != srcdir failure The split symbol files are in the srcdir path, not in the builddir one. --- Makefile.am | 6 +++--- 1 file 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 -- cgit v1.2.1