]> git.sesse.net Git - ffmpeg/commitdiff
configure: replace 'pr' with printf since busybox does not support pr
authorGuo, Yejun <yejun.guo@intel.com>
Wed, 24 Apr 2019 13:13:21 +0000 (21:13 +0800)
committerAlexander Strasser <eclipse7@gmx.net>
Wed, 15 May 2019 19:54:31 +0000 (21:54 +0200)
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>
configure

index 580af9c0f603c941c3e3ed57ef3be7c2e8903a0f..9b4305cf0d5d7cc6afc6977bbf716a978b3d3d75 100755 (executable)
--- a/configure
+++ b/configure
@@ -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(){