diff options
author | Joey Hess <joeyh@joeyh.name> | 2015-11-03 10:38:08 -0400 |
---|---|---|
committer | Joey Hess <joeyh@joeyh.name> | 2015-11-03 10:38:08 -0400 |
commit | 94b7c09a14f4f554fda6fc2c7fce65d64246344a (patch) | |
tree | 07950c656b4d544cb9074239435a3c24bf5d622d /Setup.hs | |
parent | 3a19893f0041eb716cdc3eb61278d17eebd49839 (diff) |
Avoid installing desktop file and program file if cabal install git-annex is run as root, since that is not a systemwide install, but to /root, and so generating a systemwide desktop file is not right.
Diffstat (limited to 'Setup.hs')
-rw-r--r-- | Setup.hs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -64,7 +64,7 @@ installManpages copyDest verbosity pkg lbi = installDesktopFile :: CopyDest -> Verbosity -> PackageDescription -> LocalBuildInfo -> IO () installDesktopFile copyDest _verbosity pkg lbi | progfile copyDest == progfile NoCopyDest = - DesktopFile.install (progfile copyDest) + DesktopFile.installUser (progfile copyDest) | otherwise = return () where progfile cd = bindir (absoluteInstallDirs pkg lbi cd) </> "git-annex" |