unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
blob ffa75918b87c0003fca6f73ae75fa1a351acd776 1242 bytes (raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
 
From 4c02c080475c9d08dbed98dd64ecca337aa359ae Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E5=AE=8B=E6=96=87=E6=AD=A6?= <iyzsong@member.fsf.org>
Date: Sat, 20 Feb 2021 20:37:39 +0800
Subject: [PATCH] Allow set libretro_directory via environment variable

---
 retroarch.c | 13 ++++++++++++-
 1 file changed, 12 insertions(+), 1 deletion(-)

diff --git a/retroarch.c b/retroarch.c
index 8a0461c816..cbf11d8b6a 100644
--- a/retroarch.c
+++ b/retroarch.c
@@ -17603,7 +17603,18 @@ static bool retroarch_parse_input_and_config(
             p_rarch->configuration_settings->bools.log_to_file,
             p_rarch->configuration_settings->bools.log_to_file_timestamp,
             p_rarch->configuration_settings->paths.log_dir);
-            
+
+   /* Override settings via environment variables */
+   {
+      settings_t *settings = p_rarch->configuration_settings;
+      char *value = getenv("LIBRETRO_DIRECTORY");
+      if (value != NULL)
+      {
+         retroarch_override_setting_set(RARCH_OVERRIDE_SETTING_LIBRETRO_DIRECTORY, NULL);
+         configuration_set_string(settings, settings->paths.directory_libretro, value);
+      }
+   }
+
    /* Second pass: All other arguments override the config file */
    optind = 1;
 
-- 
2.33.0


debug log:

solving ffa75918b8 ...
found ffa75918b8 in https://git.savannah.gnu.org/cgit/guix.git

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).