configure: Use "cat -n" instead of "pr -n -t"

Configuration logging is passed through pr, but nothing configure
does actually requires pr. Use cat instead.

Change-Id: I451217882a329c2bfb8942ac86ac624a7feef670
This commit is contained in:
Tom Finegan 2014-03-05 15:18:23 -08:00
parent d73c4ac84d
commit 8ed6277f53

View File

@ -41,7 +41,7 @@ log(){
log_file(){
log BEGIN $1
pr -n -t $1 >>$logfile
cat -n $1 >>$logfile
log END $1
}