提交 ba321adb 编写于 作者: J Jeremy Kolb 提交者: Diego Biurrun

Store license value in a variable for later use.

patch by Jeremy Kolb, jkolb wsi com

Originally committed as revision 13183 to svn://svn.ffmpeg.org/ffmpeg/trunk
上级 e6375662
......@@ -1978,11 +1978,14 @@ for type in decoder encoder parser demuxer muxer protocol filter bsf indev outde
echo
done
enabled nonfree &&
echo "License: unredistributable" ||
(enabled gpl &&
echo "License: GPL" ||
echo "License: LGPL")
license="LGPL"
if enabled nonfree; then
license="unredistributable"
elif enabled gpl; then
license="GPL"
fi
echo "License: $license"
echo "Creating config.mak and config.h..."
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册