diff options
author | Guo, Yejun <yejun.guo@intel.com> | 2019-04-24 21:13:21 +0800 |
---|---|---|
committer | Alexander Strasser <eclipse7@gmx.net> | 2019-05-15 21:54:31 +0200 |
commit | ae6486c6251039d3a6bb5a90e1d818331cf55edc (patch) | |
tree | b557a08aa8907fdaf4b56b2202e505a43f276c52 /configure | |
parent | 13168ecbdc03c25065f2d1394aa6f2447b33600e (diff) | |
download | ffmpeg-streaming-ae6486c6251039d3a6bb5a90e1d818331cf55edc.zip ffmpeg-streaming-ae6486c6251039d3a6bb5a90e1d818331cf55edc.tar.gz |
configure: replace 'pr' with printf since busybox does not support pr
This patch is based on https://trac.ffmpeg.org/ticket/5680 provided by
Kylie McClain <somasis@exherbo.org> at Wed, 29 Jun 2016 16:37:20 -0400,
and have some changes.
contributor: Kylie McClain <somasis@exherbo.org>
contributor: avih <avihpit@yahoo.com>
Signed-off-by: Guo, Yejun <yejun.guo@intel.com>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 10 |
1 files changed, 7 insertions, 3 deletions
@@ -503,9 +503,13 @@ log(){ } log_file(){ - log BEGIN $1 - pr -n -t $1 >> $logfile - log END $1 + log BEGIN "$1" + log_file_i=1 + while IFS= read -r log_file_line; do + printf '%5d\t%s\n' "$log_file_i" "$log_file_line" + log_file_i=$(($log_file_i+1)) + done < "$1" >> "$logfile" + log END "$1" } warn(){ |