diff options
author | Michael T. Dean <mtdean@thirdcontact.com> | 2004-04-09 14:57:39 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2004-04-09 14:57:39 +0000 |
commit | 1b8b121fb64c48a6f14c15967a55c910b52918df (patch) | |
tree | 906f4dad49b25e29309088d06df9108b4f67b6ec /libavcodec | |
parent | 931c85d04a9ab4f02f18d4d46997097b475e5294 (diff) | |
download | ffmpeg-1b8b121fb64c48a6f14c15967a55c910b52918df.tar.gz |
Missing LDFLAGS in libavcodec/Makefile patch by ("Michael T. Dean" <mtdean at thirdcontact dot com>)
Originally committed as revision 2987 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/Makefile b/libavcodec/Makefile index 03d90fe767..c8f84d5d00 100644 --- a/libavcodec/Makefile +++ b/libavcodec/Makefile @@ -188,7 +188,7 @@ ifeq ($(CONFIG_WIN32),yes) $(CC) $(SHFLAGS) -Wl,--output-def,$(@:.dll=.def) -o $@ $(OBJS) $(EXTRALIBS) $(AMREXTRALIBS) -lib /machine:i386 /def:$(@:.dll=.def) else - $(CC) $(SHFLAGS) -o $@ $(OBJS) $(EXTRALIBS) $(AMREXTRALIBS) + $(CC) $(SHFLAGS) -o $@ $(OBJS) $(EXTRALIBS) $(AMREXTRALIBS) $(LDFLAGS) endif dsputil.o: dsputil.c dsputil.h |