OSX: Remove ssh and ssh-keygen from dmg as they're included in OSX by default.

This commit is contained in:
Joey Hess 2013-12-13 14:25:24 -04:00
parent 75627390cd
commit d7ee0bdbb8
3 changed files with 9 additions and 3 deletions

View file

@ -29,8 +29,12 @@ bundledPrograms = catMaybes
, Just "xargs"
#endif
, Just "rsync"
#ifndef darwin_HOST_OS
-- OS X has ssh installed by default.
-- (Linux probably, but not guaranteed.)
, Just "ssh"
, Just "ssh-keygen"
#endif
#ifndef mingw32_HOST_OS
, Just "sh"
#endif