summaryrefslogtreecommitdiff
path: root/build/make/configure.sh
diff options
context:
space:
mode:
authorTom Finegan <tomfinegan@google.com>2014-03-05 15:18:23 -0800
committerTom Finegan <tomfinegan@google.com>2014-03-05 15:18:23 -0800
commit8ed6277f53787f167985a691ed6800eda86b13c8 (patch)
treece8b740412e2858c267aa8c2cb5e9898b90fd54a /build/make/configure.sh
parentd73c4ac84d2caa486c1ef96ef976506a49fd2be3 (diff)
downloadlibvpx-8ed6277f53787f167985a691ed6800eda86b13c8.tar
libvpx-8ed6277f53787f167985a691ed6800eda86b13c8.tar.gz
libvpx-8ed6277f53787f167985a691ed6800eda86b13c8.tar.bz2
libvpx-8ed6277f53787f167985a691ed6800eda86b13c8.zip
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
Diffstat (limited to 'build/make/configure.sh')
-rwxr-xr-xbuild/make/configure.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/make/configure.sh b/build/make/configure.sh
index c379c74a9..449d1b9f8 100755
--- a/build/make/configure.sh
+++ b/build/make/configure.sh
@@ -41,7 +41,7 @@ log(){
log_file(){
log BEGIN $1
- pr -n -t $1 >>$logfile
+ cat -n $1 >>$logfile
log END $1
}