Echo the config in console or file

Change-Id: Iae391c3bd656c16951f9b5a47b0ac9857b2604d7
This commit is contained in:
Yi Luo
2017-10-20 16:50:30 -07:00
parent 6298a77a6f
commit ca821de878
2 changed files with 7 additions and 2 deletions

View File

@@ -17,13 +17,16 @@ script_dir=~/Dev/sandbox/libvpx/scripts
common="--disable-docs --enable-experimental"
bd_config="--enable-lowbitdepth"
#bd_config="--enable-lowbitdepth"
#--disable-highbitdepth"
. $script_dir/disabled_list.sh
../$libsrc/configure $debug $bd_config $common $disabled $tool > /dev/null
echo ../$libsrc/configure $debug $common $disabled $tool
../$libsrc/configure $debug $common $disabled $tool > /dev/null
if [ $? -ne 0 ]; then
echo "Error: configure fails!" > $test_dir/error_config.txt
exit 1
fi

View File

@@ -13,6 +13,8 @@ debug=
. $script_dir/disabled_list.sh
echo ../$libsrc/configure $debug $common $disabled $tool
../$libsrc/configure $debug $common $disabled $tool > /dev/null
if [ $? -ne 0 ]; then
echo "Error: configure fails!" > $test_dir/error_config.txt