mirror of
https://github.com/libretro/RetroArch
synced 2025-01-30 21:32:45 +00:00
Merge pull request #5602 from orbea/alignment
Fix alignment in ../configure --help
This commit is contained in:
commit
9503edce82
@ -1,3 +1,9 @@
|
||||
HAVE_LIBRETRO= # Libretro library used
|
||||
HAVE_ASSETS_DIR= # Assets install directory
|
||||
HAVE_BIN_DIR= # Binary install directory
|
||||
HAVE_MAN_DIR= # Manpage install directory
|
||||
HAVE_OPENGLES_LIBS= # Link flags for custom GLES library
|
||||
HAVE_OPENGLES_CFLAGS= # C-flags for custom GLES library
|
||||
HAVE_CACA=no # Libcaca support
|
||||
HAVE_LIBRETRODB=yes # Libretrodb support
|
||||
HAVE_RGUI=yes # RGUI menu
|
||||
@ -14,12 +20,6 @@ HAVE_LIBUSB=auto # Libusb HID support
|
||||
C89_LIBUSB=no
|
||||
HAVE_DBUS=auto # dbus support
|
||||
HAVE_UDEV=auto # Udev/Evdev gamepad support
|
||||
HAVE_LIBRETRO= # Libretro library used
|
||||
HAVE_ASSETS_DIR= # Assets install directory
|
||||
HAVE_BIN_DIR= # Binary install directory
|
||||
HAVE_MAN_DIR= # Manpage install directory
|
||||
HAVE_OPENGLES_LIBS= # Link flags for custom GLES library
|
||||
HAVE_OPENGLES_CFLAGS= # C-flags for custom GLES library
|
||||
HAVE_THREADS=auto # Threading support
|
||||
HAVE_THREAD_STORAGE=auto # Thread Local Storage support
|
||||
HAVE_FFMPEG=auto # FFmpeg recording support
|
||||
|
@ -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