From 8ecf74753c6b2490741505859ebed9888af782eb Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Tue, 7 Feb 2012 18:45:55 +0900 Subject: [PATCH] Refer to local libs without a path. I'm sure I've been here before... Anyway, using $(top_builddir)/... to refer to a local lib confuses make and breaks parallel builds. --- libs/audio/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/audio/Makefile.am b/libs/audio/Makefile.am index 8f6f8ff70..f377992b4 100644 --- a/libs/audio/Makefile.am +++ b/libs/audio/Makefile.am @@ -21,7 +21,7 @@ EXTRA_LTLIBRARIES= libQFsound.la libQFcd.la \ cd_plug_libs=$(top_builddir)/libs/util/libQFutil.la cd_file_libs= \ - $(top_builddir)/libs/audio/libQFsound.la \ + libQFsound.la \ $(cd_plug_libs) cd_file_la_LDFLAGS= $(plugin_ldflags)