##// END OF EJS Templates
run-tests: move build/ directory to HGTMP...
Martin Geisler -
r12502:41f2fa72 default
parent child Browse files
Show More
@@ -362,10 +362,11 b' def installhg(options):'
362 # when they happen.
362 # when they happen.
363 nohome = ''
363 nohome = ''
364 cmd = ('%s setup.py %s clean --all'
364 cmd = ('%s setup.py %s clean --all'
365 ' build --build-base="%s"'
365 ' install --force --prefix="%s" --install-lib="%s"'
366 ' install --force --prefix="%s" --install-lib="%s"'
366 ' --install-scripts="%s" %s >%s 2>&1'
367 ' --install-scripts="%s" %s >%s 2>&1'
367 % (sys.executable, pure, INST, PYTHONDIR, BINDIR, nohome,
368 % (sys.executable, pure, os.path.join(HGTMP, "build"),
368 installerrs))
369 INST, PYTHONDIR, BINDIR, nohome, installerrs))
369 vlog("# Running", cmd)
370 vlog("# Running", cmd)
370 if os.system(cmd) == 0:
371 if os.system(cmd) == 0:
371 if not options.verbose:
372 if not options.verbose:
General Comments 0
You need to be logged in to leave comments. Login now