configure: use -r option for pr when listing enabled config options.

This fixes ugliness when configure outputs its (empty) results on HPUX
(maybe some other UNIXes too):

Enabled indevs:
pr:  -- empty file

Signed-off-by: Mans Rullgard <mans@mansr.com>
This commit is contained in:
Konstantin Pavlov 2011-03-17 10:11:14 +00:00 committed by Mans Rullgard
parent 350785a662
commit fda299f0d0
1 changed files with 1 additions and 1 deletions

2
configure vendored
View File

@ -3143,7 +3143,7 @@ echo
for type in decoder encoder hwaccel parser demuxer muxer protocol filter bsf indev outdev; do
echo "Enabled ${type}s:"
eval list=\$$(toupper $type)_LIST
print_enabled '_*' $list | sort | pr -3 -t
print_enabled '_*' $list | sort | pr -r -3 -t
echo
done