From 3aba42899823998bcd8d1a661a97db07e0bac926 Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Wed, 4 Oct 2006 16:22:14 +0000 Subject: [PATCH] Libraries are created in the build tree, not in the source tree. Originally committed as revision 6555 to svn://svn.ffmpeg.org/ffmpeg/trunk --- common.mak | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common.mak b/common.mak index 03bc8b1a59..01d44840c8 100644 --- a/common.mak +++ b/common.mak @@ -10,7 +10,7 @@ OBJS := $(OBJS) $(ASM_OBJS) $(CPPOBJS) STATIC_OBJS := $(OBJS) $(STATIC_OBJS) SHARED_OBJS := $(OBJS) $(SHARED_OBJS) -EXTRALIBS := -L$(SRC_PATH)/libavutil -lavutil$(BUILDSUF) $(EXTRALIBS) +EXTRALIBS := -L$(BUILD_ROOT)/libavutil -lavutil$(BUILDSUF) $(EXTRALIBS) all: $(EXTRADEPS) $(LIB) $(SLIBNAME)