diff options
author | Hunter Sezen <ovariegata@yahoo.com> | 2017-11-26 09:25:24 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2017-12-02 06:30:51 +0700 |
commit | 1324a5bfd901280bc340614c3ba35efed5247598 (patch) | |
tree | 81eb031a80f7b7b052992d50221c36863621512a /games/RetroArch | |
parent | ca3fa60b8fe3d64f5487f750b1923738873f309c (diff) | |
download | slackbuilds-1324a5bfd901280bc340614c3ba35efed5247598.tar.gz |
games/RetroArch: Update script.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'games/RetroArch')
-rw-r--r-- | games/RetroArch/RetroArch.SlackBuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/games/RetroArch/RetroArch.SlackBuild b/games/RetroArch/RetroArch.SlackBuild index 6e4c3b9374..9bc4ec6442 100644 --- a/games/RetroArch/RetroArch.SlackBuild +++ b/games/RetroArch/RetroArch.SlackBuild @@ -77,14 +77,14 @@ else RELEASE=release fi -gles='' +gles=; python= + if [ "${GLES:-0}" = 1 ]; then gles='--enable-opengles' elif [ "${GLES3:-0}" = 1 ]; then gles='--enable-opengles --enable-opengles3' fi -python='' if [ "${PYTHON:-0}" = 1 ]; then python='--enable-python' # Needed for python3 in the 14.1 SBo branch. @@ -95,7 +95,7 @@ fi # Disable downloading cores with the online updater # https://github.com/libretro/RetroArch/issues/3237 -SED_CORE=''; SED_INFO=''; SED_MENU='' +SED_CORE=; SED_INFO=; SED_MENU= if [ "${BUILDBOT:-0}" != 1 ]; then SED_CORE="s|# libretro_directory =|libretro_directory = /usr/lib${LIBDIRSUFFIX}/libretro|" SED_INFO="s|# libretro_info_path =|libretro_info_path = /usr/lib${LIBDIRSUFFIX}/libretro/info|" |