Skip to content

Commit

Permalink
qb: Remove deprecated arguments.
Browse files Browse the repository at this point in the history
Please use --bindir, --mandir and --sysconfdir now.
  • Loading branch information
orbea committed Nov 1, 2019
1 parent 8809932 commit 98b04b9
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
2 changes: 0 additions & 2 deletions qb/config.params.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
HAVE_LIBRETRO= # Libretro library used
HAVE_ASSETS_DIR= # Assets install directory
HAVE_BIN_DIR= # Binary install directory (Deprecated)
HAVE_MAN_DIR= # Manpage install directory (Deprecated)
HAVE_GDI=yes # GDI support (Win32-only)
HAVE_OPENGLES_LIBS= # Link flags for custom GLES library
HAVE_OPENGLES_CFLAGS= # C-flags for custom GLES library
Expand Down
3 changes: 1 addition & 2 deletions qb/qb.params.sh
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ EOF
print_help_option "--datarootdir=PATH" "Read-only data install directory"
print_help_option "--docdir=PATH" "Documentation install directory"
print_help_option "--mandir=PATH" "Manpage install directory"
print_help_option "--global-config-dir=PATH" "System wide config file prefix (Deprecated)"
print_help_option "--build=BUILD" "The build system (no-op)"
print_help_option "--host=HOST" "Cross-compile with HOST-gcc instead of gcc"
print_help_option "--help" "Show this help"
Expand Down Expand Up @@ -105,7 +104,7 @@ parse_input() # Parse stuff :V
config_opts="${config_opts} $1"
case "$1" in
--prefix=*) PREFIX=${1##--prefix=};;
--global-config-dir=*|--sysconfdir=*) GLOBAL_CONFIG_DIR="${1#*=}";;
--sysconfdir=*) GLOBAL_CONFIG_DIR="${1#*=}";;
--bindir=*) BIN_DIR="${1#*=}";;
--build=*) BUILD="${1#*=}";;
--datarootdir=*) SHARE_DIR="${1#*=}";;
Expand Down

0 comments on commit 98b04b9

Please sign in to comment.