diff options
author | Diego Biurrun <diego@biurrun.de> | 2006-10-04 13:47:30 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2006-10-04 13:47:30 +0000 |
commit | db671614cce86d6ba7eaacb774569b7dc7656ec7 (patch) | |
tree | d0250d829dadbc968a93941bbbfa300deab92465 /common.mak | |
parent | b95d44b6f43bc20a75998e35826130c985c8efb8 (diff) | |
download | ffmpeg-db671614cce86d6ba7eaacb774569b7dc7656ec7.tar.gz |
Replace .. by $(SRC_PATH), otherwise there might be problems with
out-of-tree builds.
Originally committed as revision 6553 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 ac570c1f51..03bc8b1a59 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../libavutil -lavutil$(BUILDSUF) $(EXTRALIBS) +EXTRALIBS := -L$(SRC_PATH)/libavutil -lavutil$(BUILDSUF) $(EXTRALIBS) all: $(EXTRADEPS) $(LIB) $(SLIBNAME) |