diff options
author | Johannes Schickel | 2016-02-12 17:12:59 +0100 |
---|---|---|
committer | Johannes Schickel | 2016-02-12 17:12:59 +0100 |
commit | 5e114dfa9ffb46d51616ee7d45f8a0fcb2e918e2 (patch) | |
tree | d14e75d32328884bb0db9af34e7f16be3aa09536 | |
parent | 35a5e11b8260fd130829644014b87f0f962ddb6e (diff) | |
download | scummvm-rg350-5e114dfa9ffb46d51616ee7d45f8a0fcb2e918e2.tar.gz scummvm-rg350-5e114dfa9ffb46d51616ee7d45f8a0fcb2e918e2.tar.bz2 scummvm-rg350-5e114dfa9ffb46d51616ee7d45f8a0fcb2e918e2.zip |
CONFIGURE: Allow to override ronindir through RONINDIR env variable.
-rwxr-xr-x | configure | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -2659,7 +2659,11 @@ if test -n "$_host"; then _build_scalers=no _mad=yes _zlib=yes - add_line_to_config_mk 'ronindir = /usr/local/ronin' + if test -z "$RONINDIR"; then + add_line_to_config_mk "ronindir := /usr/local/ronin" + else + add_line_to_config_mk "ronindir := $RONINDIR" + fi _port_mk="backends/platform/dc/dreamcast.mk" ;; ds) |