diff options
author | Måns Rullgård <mans@mansr.com> | 2009-04-29 16:14:33 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2009-04-29 16:14:33 +0000 |
commit | 4c27207c12a5b07f54114885feb14d7ccf05a82d (patch) | |
tree | dadca5d2e5ff11b8bce7bf61f1c537f391965512 /configure | |
parent | a068a7f1f0cbf0962424dfade42a1e9a5bf7f5bb (diff) | |
download | ffmpeg-4c27207c12a5b07f54114885feb14d7ccf05a82d.tar.gz |
configure: fix licence check function
Originally committed as revision 18717 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1737,7 +1737,7 @@ fi die_license_disabled() { - enabled $1 || enabled $2 && die "$2 is $1 and --enable-$1 is not specified." + enabled $1 || { enabled $2 && die "$2 is $1 and --enable-$1 is not specified."; } } die_license_disabled gpl libfaad2 |