From a6aa83466afddfbfb506d29b6bedecda339adf9e Mon Sep 17 00:00:00 2001 From: Yegor Yefremov Date: Wed, 28 Dec 2011 10:53:36 +0100 Subject: [PATCH] fix link creation for out-of-source builds --- Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.am b/Makefile.am index 5cf287cee..9f26b0633 100644 --- a/Makefile.am +++ b/Makefile.am @@ -480,7 +480,7 @@ src/builtin.h: src/genbuiltin $(builtin_sources) $(AM_V_GEN)$(srcdir)/src/genbuiltin $(builtin_modules) > $@ audio/telephony.c: audio/@TELEPHONY_DRIVER@ - $(AM_V_GEN)$(LN_S) $(abs_top_srcdir)/$< $@ + $(AM_V_GEN)$(LN_S) $(abs_top_builddir)/$< $@ sap/sap.c: sap/@SAP_DRIVER@ $(AM_V_GEN)$(LN_S) $(abs_top_srcdir)/$< $@ @@ -492,7 +492,7 @@ $(lib_libbluetooth_la_OBJECTS): $(local_headers) lib/bluetooth/%.h: lib/%.h $(AM_V_at)$(MKDIR_P) lib/bluetooth - $(AM_V_GEN)$(LN_S) $(abs_top_srcdir)/$< $@ + $(AM_V_GEN)$(LN_S) $(abs_top_builddir)/$< $@ clean-local: $(RM) -r lib/bluetooth -- 2.47.3