Commit 200c1de6 authored by diego's avatar diego

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

patch by Alexander Strasser


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@4948 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 6f658c3e
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment