diff options
Diffstat (limited to 'compiler/GHC/Driver/Session.hs')
-rw-r--r-- | compiler/GHC/Driver/Session.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/GHC/Driver/Session.hs b/compiler/GHC/Driver/Session.hs index 90f49f995f..5e76da3490 100644 --- a/compiler/GHC/Driver/Session.hs +++ b/compiler/GHC/Driver/Session.hs @@ -867,7 +867,7 @@ opt_i dflags= toolSettings_opt_i $ toolSettings dflags versionedAppDir :: String -> ArchOS -> MaybeT IO FilePath versionedAppDir appname platform = do -- Make sure we handle the case the HOME isn't set (see #11678) - appdir <- tryMaybeT $ getAppUserDataDirectory appname + appdir <- tryMaybeT $ getXdgDirectory XdgData appname return $ appdir </> versionedFilePath platform versionedFilePath :: ArchOS -> FilePath |