From 1066a99540cc3546c3a5add4e08acc219b9ec006 Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Fri, 4 Aug 2006 10:33:16 +0000 Subject: [PATCH] Shared libraries should go in $PREFIX on MinGW. Originally committed as revision 5931 to svn://svn.ffmpeg.org/ffmpeg/trunk --- configure | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/configure b/configure index fbe7939e83..76e688b798 100755 --- a/configure +++ b/configure @@ -885,7 +885,8 @@ EOF SLIB_EXTRA_CMD="-lib /machine:i386 /def:\$(@:${SLIBSUF}=.def)" FFLDFLAGS="-Wl,--output-def,\$(@:${SLIBSUF}=.def),--out-implib,lib\$(SLIBNAME:\$(SLIBSUF)=.dll.a)" if test "$force_prefix" != yes; then PREFIX="$PROGRAMFILES/FFmpeg"; fi - if test "$force_libdir" != yes; then bindir="$PREFIX"; fi + if test "$force_libdir" != yes; then bindir='${PREFIX}'; fi + shlibdir='${PREFIX}' fi # Combine FFLDFLAGS, EXTRALDFLAGS and the LDFLAGS environment variable. -- GitLab