diff options
author | James Zern <jzern@google.com> | 2013-07-18 14:17:00 -0700 |
---|---|---|
committer | James Zern <jzern@google.com> | 2013-07-18 14:17:00 -0700 |
commit | e636af13e7eef2ba684313c837d2e9554386962b (patch) | |
tree | 34a3c18bd47e643ff3ff829d34074541546f9b83 | |
parent | b7750812838eb84b55b8bcf25b9398cc41cdc0eb (diff) | |
download | libvpx-e636af13e7eef2ba684313c837d2e9554386962b.tar.gz libvpx-e636af13e7eef2ba684313c837d2e9554386962b.tar.bz2 libvpx-e636af13e7eef2ba684313c837d2e9554386962b.zip |
configure: default configure log to config.log
this is consistent with autoconf
Change-Id: I1860831693789259ee35d644775653d6a460cc77
-rw-r--r-- | .gitignore | 2 | ||||
-rw-r--r-- | README | 2 | ||||
-rwxr-xr-x | build/make/configure.sh | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/.gitignore b/.gitignore index 6bb315b8a..a93b6a0f9 100644 --- a/.gitignore +++ b/.gitignore @@ -16,7 +16,7 @@ /.install-* /.libs /Makefile -/config.err +/config.log /config.mk /decode_to_md5 /decode_to_md5.c @@ -97,7 +97,7 @@ COMPILING THE APPLICATIONS/LIBRARIES: 5. Configuration errors If the configuration step fails, the first step is to look in the error log. - This defaults to config.err. This should give a good indication of what went + This defaults to config.log. This should give a good indication of what went wrong. If not, contact us for support. SUPPORT diff --git a/build/make/configure.sh b/build/make/configure.sh index ee4493d2b..64ef2e677 100755 --- a/build/make/configure.sh +++ b/build/make/configure.sh @@ -75,7 +75,7 @@ Options: Build options: --help print this message - --log=yes|no|FILE file configure log is written to [config.err] + --log=yes|no|FILE file configure log is written to [config.log] --target=TARGET target platform tuple [generic-gnu] --cpu=CPU optimize for a specific cpu rather than a family --extra-cflags=ECFLAGS add ECFLAGS to CFLAGS [$CFLAGS] @@ -1296,7 +1296,7 @@ process_detect() { } enable logging -logfile="config.err" +logfile="config.log" self=$0 process() { cmdline_args="$@" |