aboutsummaryrefslogtreecommitdiff
path: root/Build/BundledPrograms.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2013-12-13 14:25:24 -0400
committerGravatar Joey Hess <joey@kitenet.net>2013-12-13 14:25:24 -0400
commit49bbf18e68a78f03cd3a992b53f0e13f0a7bfa38 (patch)
tree9b07b3ea34c25572f460ee194922bd49ffa51a7f /Build/BundledPrograms.hs
parentbede36dfc8a10d420adc25b869087146cfee3fd7 (diff)
OSX: Remove ssh and ssh-keygen from dmg as they're included in OSX by default.5.20131213
Diffstat (limited to 'Build/BundledPrograms.hs')
-rw-r--r--Build/BundledPrograms.hs4
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