Commit ba321adb authored by Jeremy Kolb's avatar Jeremy Kolb Committed by 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
parent e6375662
...@@ -1978,11 +1978,14 @@ for type in decoder encoder parser demuxer muxer protocol filter bsf indev outde ...@@ -1978,11 +1978,14 @@ for type in decoder encoder parser demuxer muxer protocol filter bsf indev outde
echo echo
done done
enabled nonfree && license="LGPL"
echo "License: unredistributable" || if enabled nonfree; then
(enabled gpl && license="unredistributable"
echo "License: GPL" || elif enabled gpl; then
echo "License: LGPL") license="GPL"
fi
echo "License: $license"
echo "Creating config.mak and config.h..." echo "Creating config.mak and config.h..."
......
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