##// 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 362 # when they happen.
363 363 nohome = ''
364 364 cmd = ('%s setup.py %s clean --all'
365 ' build --build-base="%s"'
365 366 ' install --force --prefix="%s" --install-lib="%s"'
366 367 ' --install-scripts="%s" %s >%s 2>&1'
367 % (sys.executable, pure, INST, PYTHONDIR, BINDIR, nohome,
368 installerrs))
368 % (sys.executable, pure, os.path.join(HGTMP, "build"),
369 INST, PYTHONDIR, BINDIR, nohome, installerrs))
369 370 vlog("# Running", cmd)
370 371 if os.system(cmd) == 0:
371 372 if not options.verbose:
General Comments 0
You need to be logged in to leave comments. Login now