summaryrefslogtreecommitdiff
path: root/Build
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2013-12-24 16:28:10 -0400
committerGravatar Joey Hess <joey@kitenet.net>2013-12-24 16:28:10 -0400
commitd0655bbe7c30e0b417f9d82457fde0a47f9f86a0 (patch)
tree0b5f604dae54d291651a6c77a31a405e04c46901 /Build
parent0f4ca88ceda2f8a49a3a1bfc60f864c517944832 (diff)
Include git-receive-pack, git-upload-pack, and git wrappers in the Linux standalone build, and OSX app, so they will be available when it's added to PATH.
Diffstat (limited to 'Build')
-rw-r--r--Build/BundledPrograms.hs4
1 files changed, 4 insertions, 0 deletions
diff --git a/Build/BundledPrograms.hs b/Build/BundledPrograms.hs
index ae49f3061..0c2e177f4 100644
--- a/Build/BundledPrograms.hs
+++ b/Build/BundledPrograms.hs
@@ -22,6 +22,10 @@ bundledPrograms = catMaybes
#ifndef mingw32_HOST_OS
-- git is not included in the windows bundle
, Just "git"
+ -- Not strictly needed in PATH by git-annex, but called
+ -- by git when it sshes to a remote.
+ , Just "git-upload-pack"
+ , Just "git-receive-pack"
#endif
, Just "cp"
#ifndef mingw32_HOST_OS