1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-25 01:05:37 +00:00

[config] Support for HOME_ETC

This commit is contained in:
Witold Filipczyk 2021-12-10 16:05:52 +01:00
parent e47de997d5
commit 6860de5a8d

View File

@ -110,7 +110,7 @@ static char *
get_home(void)
{
char *home_elinks;
char *envhome = getenv("HOME");
char *envhome = getenv("HOME_ETC") ?: getenv("HOME");
char *home = NULL;
if (!home && envhome)