Some Make variants complain if the LIB variable does not exist.

patch by Alexander Strasser

Originally committed as revision 4948 to svn://svn.ffmpeg.org/ffmpeg/trunk
pull/126/head
Alexander Strasser 19 years ago committed by Diego Biurrun
parent 8720de5b76
commit 1a44a8b654
  1. 2
      configure

2
configure vendored

@ -1411,6 +1411,8 @@ echo "LIBPREF=$LIBPREF" >> config.mak
echo "LIBSUF=\${BUILDSUF}$LIBSUF" >> config.mak
if test "$lstatic" = "yes" ; then
echo "LIB=$LIB" >> config.mak
else # Some Make complain if this variable does not exist.
echo "LIB=" >> config.mak
fi
echo "SLIBPREF=$SLIBPREF" >> config.mak
echo "SLIBSUF=\${BUILDSUF}$SLIBSUF" >> config.mak

Loading…
Cancel
Save