[FFmpeg-cvslog] configure: remove support for -n flag in print_enabled()
Mans Rullgard
git at videolan.org
Tue Nov 13 11:00:14 CET 2012
ffmpeg | branch: master | Mans Rullgard <mans at mansr.com> | Sat Oct 27 19:11:04 2012 +0100| [9eda2a85c64e5551fd5ee47285834e7b33b48080] | committer: Mans Rullgard
configure: remove support for -n flag in print_enabled()
This flag is no longer used.
Signed-off-by: Mans Rullgard <mans at mansr.com>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=9eda2a85c64e5551fd5ee47285834e7b33b48080
---
configure | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/configure b/configure
index a66a7ff..163b742 100755
--- a/configure
+++ b/configure
@@ -592,11 +592,10 @@ print_config(){
}
print_enabled(){
- test x"$1" = x-n && end=" " && shift || end="\n"
suf=$1
shift
for v; do
- enabled $v && printf "%s$end" ${v%$suf};
+ enabled $v && printf "%s\n" ${v%$suf};
done
}
More information about the ffmpeg-cvslog
mailing list