diff options
author | Joey Hess <joey@kitenet.net> | 2013-12-13 14:25:24 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2013-12-13 14:25:24 -0400 |
commit | 49bbf18e68a78f03cd3a992b53f0e13f0a7bfa38 (patch) | |
tree | 9b07b3ea34c25572f460ee194922bd49ffa51a7f /Build | |
parent | bede36dfc8a10d420adc25b869087146cfee3fd7 (diff) |
OSX: Remove ssh and ssh-keygen from dmg as they're included in OSX by default.5.20131213
Diffstat (limited to 'Build')
-rw-r--r-- | Build/BundledPrograms.hs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Build/BundledPrograms.hs b/Build/BundledPrograms.hs index e875c4e96..ae49f3061 100644 --- a/Build/BundledPrograms.hs +++ b/Build/BundledPrograms.hs @@ -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 |