diff options
author | Måns Rullgård <mans@mansr.com> | 2009-05-20 18:37:34 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2009-05-20 18:37:34 +0000 |
commit | d349685bb945e4758e14cb3102944383d0eb19ae (patch) | |
tree | f1b372020aad509868d7fd6988cf8f4ddc332bd3 | |
parent | cdce0fb84518cb3b906dceb3fd3f8610407fbdd4 (diff) | |
download | ffmpeg-d349685bb945e4758e14cb3102944383d0eb19ae.tar.gz |
Create shared libs correctly, fix mingw build
Originally committed as revision 18884 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | subdir.mak | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/subdir.mak b/subdir.mak index 332816e2b7..f7d719a2b2 100644 --- a/subdir.mak +++ b/subdir.mak @@ -54,7 +54,7 @@ $(SUBDIR)$(SLIBNAME): $(SUBDIR)$(SLIBNAME_WITH_MAJOR) $(SUBDIR)$(SLIBNAME_WITH_MAJOR): $(OBJS) $(SLIB_CREATE_DEF_CMD) - $(CC) $(SHFLAGS) $(FFLDFLAGS) -o $$@ $$(filter-out $(DEP_LIBS),$$^) $(FFEXTRALIBS) $(EXTRAOBJS) + $(CC) $(SHFLAGS) $(FFLDFLAGS) -o $$@ $$(filter %.o,$$^) $(FFEXTRALIBS) $(EXTRAOBJS) $(SLIB_EXTRA_CMD) ifdef SUBDIR |