diff options
author | Diego Biurrun <diego@biurrun.de> | 2006-10-04 16:22:14 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2006-10-04 16:22:14 +0000 |
commit | 3aba42899823998bcd8d1a661a97db07e0bac926 (patch) | |
tree | 527774805d4032401c18fda819fd45946e143fc1 /common.mak | |
parent | e97664508767402167f0497d540fdab152c83a63 (diff) | |
download | ffmpeg-3aba42899823998bcd8d1a661a97db07e0bac926.tar.gz |
Libraries are created in the build tree, not in the source tree.
Originally committed as revision 6555 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'common.mak')
-rw-r--r-- | common.mak | 2 |
1 files changed, 1 insertions, 1 deletions
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) |