From 5e114dfa9ffb46d51616ee7d45f8a0fcb2e918e2 Mon Sep 17 00:00:00 2001 From: Johannes Schickel Date: Fri, 12 Feb 2016 17:12:59 +0100 Subject: CONFIGURE: Allow to override ronindir through RONINDIR env variable. --- configure | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/configure b/configure index 2a2357caa2..2e698689cc 100755 --- a/configure +++ b/configure @@ -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) -- cgit v1.2.3