[Scummvm-cvs-logs] scummvm master -> 5e114dfa9ffb46d51616ee7d45f8a0fcb2e918e2

lordhoto lordhoto at gmail.com
Fri Feb 12 17:16:53 CET 2016


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
5e114dfa9f CONFIGURE: Allow to override ronindir through RONINDIR env variable.


Commit: 5e114dfa9ffb46d51616ee7d45f8a0fcb2e918e2
    https://github.com/scummvm/scummvm/commit/5e114dfa9ffb46d51616ee7d45f8a0fcb2e918e2
Author: Johannes Schickel (lordhoto at scummvm.org)
Date: 2016-02-12T17:12:59+01:00

Commit Message:
CONFIGURE: Allow to override ronindir through RONINDIR env variable.

Changed paths:
    configure



diff --git a/configure b/configure
index 2a2357c..2e69868 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)






More information about the Scummvm-git-logs mailing list