mirror of
https://github.com/libretro/RetroArch
synced 2025-03-02 19:13:34 +00:00
qb: Fix alignment in ./configure --help.
This commit is contained in:
parent
cd942f1faa
commit
86bb116625
@ -2,7 +2,7 @@ print_help_option() # $1 = option $@ = description
|
||||
{
|
||||
_opt="$1"
|
||||
shift 1
|
||||
printf " %-25s %s\n" "$_opt" "$@"
|
||||
printf ' %-26s %s\n' "$_opt" "$@"
|
||||
}
|
||||
|
||||
print_help()
|
||||
@ -38,12 +38,12 @@ EOF
|
||||
'yes'*)
|
||||
print_help_option "--disable-$VAR" "Disable $COMMENT";;
|
||||
'no'*)
|
||||
print_help_option "--enable-$VAR" "Enable $COMMENT";;
|
||||
print_help_option "--enable-$VAR" "Enable $COMMENT";;
|
||||
'auto'*)
|
||||
print_help_option "--enable-$VAR" "Enable $COMMENT"
|
||||
print_help_option "--enable-$VAR" "Enable $COMMENT"
|
||||
print_help_option "--disable-$VAR" "Disable $COMMENT";;
|
||||
*)
|
||||
print_help_option "--with-$VAR" "Config $COMMENT";;
|
||||
print_help_option "--with-$VAR" "Config $COMMENT";;
|
||||
esac
|
||||
esac
|
||||
done < 'qb/config.params.sh'
|
||||
|
Loading…
x
Reference in New Issue
Block a user