From 6c77d1b6e9f77f73edd97f3841c74813506ff8aa Mon Sep 17 00:00:00 2001 From: INADA Naoki Date: Thu, 2 Aug 2018 19:56:48 +0900 Subject: [PATCH] Use --prefix on UnixBuild Fixes https://bugs.python.org/issue34177 --- master/master.cfg | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/master/master.cfg b/master/master.cfg index 27540edbf..7f0b1da72 100644 --- a/master/master.cfg +++ b/master/master.cfg @@ -134,7 +134,8 @@ class UnixBuild(TaggedBuildFactory): test_timeout = None def setup(self, parallel, test_with_PTY=False, **kwargs): - self.addStep(Configure(command=['./configure'] + self.configureFlags)) + self.addStep(Configure(command=[ + './configure', '--prefix', '$(PWD)/target'] + self.configureFlags)) compile = ['make', self.makeTarget] testopts = self.testFlags # Timeout for the buildworker process