~ubuntu-branches/ubuntu/precise/nodejs/precise

« back to all changes in this revision

Viewing changes to deps/v8/tools/utils.py

  • Committer: Bazaar Package Importer
  • Author(s): Jérémy Lal
  • Date: 2010-08-20 11:49:04 UTC
  • mfrom: (7.1.6 sid)
  • Revision ID: james.westby@ubuntu.com-20100820114904-lz22w6fkth7yh179
Tags: 0.2.0-1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
59
59
    return 'openbsd'
60
60
  elif id == 'SunOS':
61
61
    return 'solaris'
 
62
  elif id.find('CYGWIN') >= 0:
 
63
    return 'cygwin'
62
64
  else:
63
65
    return None
64
66