patch-tools_test_py 663 B

12345678910111213141516
  1. $OpenBSD: patch-tools_test_py,v 1.1 2015/10/24 02:46:47 abieber Exp $
  2. --- tools/test.py.orig Thu Oct 22 13:48:11 2015
  3. +++ tools/test.py Thu Oct 22 14:55:03 2015
  4. @@ -773,9 +773,9 @@ class Context(object):
  5. def GetVm(self, arch, mode):
  6. if arch == 'none':
  7. - name = 'out/Debug/node' if mode == 'debug' else 'out/Release/node'
  8. + name = '${WRKDIST}/out/Debug/node' if mode == 'debug' else '${WRKDIST}/out/Release/node'
  9. else:
  10. - name = 'out/%s.%s/node' % (arch, mode)
  11. + name = '${WRKDIST}/out/%s.%s/node' % (arch, mode)
  12. # Currently GYP does not support output_dir for MSVS.
  13. # http://code.google.com/p/gyp/issues/detail?id=40