From 1a44a8b65454a147854f150a64d7c355c3e94a6b Mon Sep 17 00:00:00 2001 From: Alexander Strasser Date: Mon, 6 Feb 2006 21:52:23 +0000 Subject: [PATCH] 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 --- configure | 2 ++ 1 file changed, 2 insertions(+) diff --git a/configure b/configure index f9c6f71b93..f461cd15da 100755 --- a/configure +++ b/configure @@ -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