diff options
author | Michael J Gruber <git@drmicha.warpmail.net> | 2010-09-17 23:00:53 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-09-27 10:42:50 -0700 |
commit | 7a0d8bcaddf984f55ac92239946cd010956e65e4 (patch) | |
tree | ad401a9d16a95f7cff51e299d34de4c1b6988f03 /git_remote_helpers | |
parent | 9027fa9eb7df606b6658dd48a40bb993ce222ddd (diff) | |
download | git-7a0d8bcaddf984f55ac92239946cd010956e65e4.tar.gz |
remote-helpers: build in platform independent directory
The build directory which is used by distutils depends on the platform
(e.g. build/lib on Fedora 13, build/lib.linux-i686-2.6 on Ubuntu 9.04).
But test-lib.sh expects to find the build in build/lib which can cause
t5800-remote-helpers.sh to fail early.
Override distutils' choice so that the build is always in build/lib.
Signed-off-by: Michael J Gruber <git@drmicha.warpmail.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'git_remote_helpers')
-rw-r--r-- | git_remote_helpers/setup.cfg | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/git_remote_helpers/setup.cfg b/git_remote_helpers/setup.cfg new file mode 100644 index 0000000000..4bff8878d1 --- /dev/null +++ b/git_remote_helpers/setup.cfg @@ -0,0 +1,3 @@ +[build] +build_purelib = build/lib +build_platlib = build/lib |