createDirectoryIfMissing True (parentDir programfile)
writeFile programfile command
)
+
+installUser :: FilePath -> IO ()
+installUser command = ifM systemwideInstall
+ ( install command
+ , return ()
+ )
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"
+git-annex (5.20151103) UNRELEASED; urgency=medium
+
+ * 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.
+
+ -- Joey Hess <id@joeyh.name> Tue, 03 Nov 2015 10:36:43 -0400
+
git-annex (5.20151102) unstable; urgency=medium
* Use statvfs on OSX.