summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorAlexander Strasser <eclipse7@gmx.net>2006-02-06 21:52:23 +0000
committerDiego Biurrun <diego@biurrun.de>2006-02-06 21:52:23 +0000
commit1a44a8b65454a147854f150a64d7c355c3e94a6b (patch)
tree5998ec62f660380e29d46b9910c7859246089276 /configure
parent8720de5b76622e98c1ce729071b3ec3cb777608f (diff)
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
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 2 insertions, 0 deletions
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