diff --git a/mythtv/configure b/mythtv/configure index e6c944138e0..89cdf9e8ca4 100755 --- a/mythtv/configure +++ b/mythtv/configure @@ -6382,6 +6382,7 @@ ffmpeg_optenableif() { } if [ -n "$cpuflags_native" ]; then + cpu_detected="$cpu" cpu="host" fi @@ -6485,7 +6486,14 @@ echo "install prefix $prefix" echo "runtime prefix $runprefix" echo if enabled cpu_override && test x"$cpu" != x"generic"; then - echo "CPU override $arch $subarch ($cpu)" + if [ -n "$cpuflags_native" ]; then + echo "CPU override $arch $subarch (cpu=host (native) is $cpu_detected)" + if test x"$processor" != x"" ; then + echo " [$processor]" + fi + else + echo "CPU override $arch $subarch ($cpu)" + fi elif test x"$processor" != x"" ; then echo "CPU $arch $subarch ($processor)" else