From f666f8d27a6dda1904667a25ff75d6430b4584f0 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Sat, 25 Sep 2010 23:07:06 +0900 Subject: [PATCH] Get the lib dependency for testsound right. No need for $(top_builddir) when the lib is in the same directory. Fixes parallel builds. --- libs/audio/Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/audio/Makefile.am b/libs/audio/Makefile.am index 5b9b690ec..b107a6464 100644 --- a/libs/audio/Makefile.am +++ b/libs/audio/Makefile.am @@ -13,8 +13,8 @@ EXEEXT= noinst_PROGRAMS= testsound testsound_SOURCES= testsound.c -testsound_LDADD= $(top_builddir)/libs/audio/libQFsound.la -testsound_DEPENDENCIES= $(top_builddir)/libs/audio/libQFsound.la +testsound_LDADD= libQFsound.la +testsound_DEPENDENCIES= libQFsound.la plugin_LTLIBRARIES= @CD_PLUGIN_TARGETS@ noinst_LTLIBRARIES= @CD_PLUGIN_STATIC@