]> granicus.if.org Git - libvpx/commitdiff
configure: Use "cat -n" instead of "pr -n -t"
authorTom Finegan <tomfinegan@google.com>
Wed, 5 Mar 2014 23:18:23 +0000 (15:18 -0800)
committerTom Finegan <tomfinegan@google.com>
Wed, 5 Mar 2014 23:18:23 +0000 (15:18 -0800)
Configuration logging is passed through pr, but nothing configure
does actually requires pr. Use cat instead.

Change-Id: I451217882a329c2bfb8942ac86ac624a7feef670

build/make/configure.sh

index c379c74a9b2fdfaeff5cfda48723cf65a8ebf64e..449d1b9f8ebe06f73c5c1e0255bd30b6effb6ae7 100755 (executable)
@@ -41,7 +41,7 @@ log(){
 
 log_file(){
     log BEGIN $1
-    pr -n -t $1 >>$logfile
+    cat -n $1 >>$logfile
     log END $1
 }