[xiph-commits] r11954 - trunk/speex/libspeex
giles at svn.xiph.org
giles at svn.xiph.org
Thu Oct 26 08:53:24 PDT 2006
Author: giles
Date: 2006-10-26 08:53:19 -0700 (Thu, 26 Oct 2006)
New Revision: 11954
Modified:
trunk/speex/libspeex/Makefile.am
Log:
Remove relative path references to libspeex which caused problems with parallel make.
Automake takes care of gathering the build between subdirs, but the relative path caused
the local libspeex.la target not to be matched with the ../libspeex/libspeex.la
dependency, causing a build failure.
This doesn't appear to have broken building in a remote directory.
Modified: trunk/speex/libspeex/Makefile.am
===================================================================
--- trunk/speex/libspeex/Makefile.am 2006-10-26 15:36:16 UTC (rev 11953)
+++ trunk/speex/libspeex/Makefile.am 2006-10-26 15:53:19 UTC (rev 11954)
@@ -31,12 +31,12 @@
noinst_PROGRAMS = testenc testenc_wb testenc_uwb testdenoise testecho
testenc_SOURCES = testenc.c
-testenc_LDADD = $(top_builddir)/libspeex/libspeex.la
+testenc_LDADD = libspeex.la
testenc_wb_SOURCES = testenc_wb.c
-testenc_wb_LDADD = $(top_builddir)/libspeex/libspeex.la
+testenc_wb_LDADD = libspeex.la
testenc_uwb_SOURCES = testenc_uwb.c
-testenc_uwb_LDADD = $(top_builddir)/libspeex/libspeex.la
+testenc_uwb_LDADD = libspeex.la
testdenoise_SOURCES = testdenoise.c
-testdenoise_LDADD = $(top_builddir)/libspeex/libspeex.la
+testdenoise_LDADD = libspeex.la
testecho_SOURCES = testecho.c
-testecho_LDADD = $(top_builddir)/libspeex/libspeex.la
+testecho_LDADD = libspeex.la
More information about the commits
mailing list