Skip to content

Commit

Permalink
Fix typo in env variable name.
Browse files Browse the repository at this point in the history
Was "XDS_CACHE_HOME". Should've been "XDG_CACHE_HOME".
  • Loading branch information
chfast committed May 4, 2016
1 parent 1cedf9b commit c580932
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libevmjit/support/Path.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ namespace path
std::string user_cache_directory()
{
#if UTILS_OS_LINUX
auto xds_cache_home = std::getenv("XDS_CACHE_HOME");
auto xds_cache_home = std::getenv("XDG_CACHE_HOME");
if (xds_cache_home && *xds_cache_home != '\0')
return xds_cache_home;

Expand Down

0 comments on commit c580932

Please sign in to comment.