From 7a0d8bcaddf984f55ac92239946cd010956e65e4 Mon Sep 17 00:00:00 2001 From: Michael J Gruber Date: Fri, 17 Sep 2010 23:00:53 +0200 Subject: [PATCH] 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 Signed-off-by: Junio C Hamano --- git_remote_helpers/setup.cfg | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 git_remote_helpers/setup.cfg 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 -- 2.11.4.GIT