~ubuntu-branches/ubuntu/trusty/nodejs/trusty-proposed

« back to all changes in this revision

Viewing changes to configure

  • Committer: Package Import Robot
  • Author(s): Jérémy Lal
  • Date: 2013-12-12 23:04:07 UTC
  • mfrom: (1.1.30)
  • Revision ID: package-import@ubuntu.com-20131212230407-xfa6gka4c6oatsx1
Tags: 0.10.23~dfsg1-1
* Upstream update.
* Refresh patches, remove 1005 patch, applied upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
696
696
write('config.mk',
697
697
      '# Do not edit. Generated by the configure script.\n' + config)
698
698
 
 
699
gyp_args = [sys.executable, 'tools/gyp_node.py', '--no-parallel']
 
700
 
699
701
if options.use_ninja:
700
 
  gyp_args = ['-f', 'ninja-' + flavor]
 
702
  gyp_args += ['-f', 'ninja-' + flavor]
701
703
elif options.use_xcode:
702
 
  gyp_args = ['-f', 'xcode']
 
704
  gyp_args += ['-f', 'xcode']
703
705
elif flavor == 'win':
704
 
  gyp_args = ['-f', 'msvs', '-G', 'msvs_version=auto']
 
706
  gyp_args += ['-f', 'msvs', '-G', 'msvs_version=auto']
705
707
else:
706
 
  gyp_args = ['-f', 'make-' + flavor]
707
 
 
708
 
subprocess.call([sys.executable, 'tools/gyp_node.py'] + gyp_args)
 
708
  gyp_args += ['-f', 'make-' + flavor]
 
709
 
 
710
gyp_args += args
 
711
 
 
712
subprocess.call(gyp_args)