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

« back to all changes in this revision

Viewing changes to .pc/2011_mipsel.patch/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:
695
695
write('config.mk',
696
696
      '# Do not edit. Generated by the configure script.\n' + config)
697
697
 
 
698
gyp_args = [sys.executable, 'tools/gyp_node.py', '--no-parallel']
 
699
 
698
700
if options.use_ninja:
699
 
  gyp_args = ['-f', 'ninja-' + flavor]
 
701
  gyp_args += ['-f', 'ninja-' + flavor]
700
702
elif options.use_xcode:
701
 
  gyp_args = ['-f', 'xcode']
 
703
  gyp_args += ['-f', 'xcode']
702
704
elif flavor == 'win':
703
 
  gyp_args = ['-f', 'msvs', '-G', 'msvs_version=auto']
 
705
  gyp_args += ['-f', 'msvs', '-G', 'msvs_version=auto']
704
706
else:
705
 
  gyp_args = ['-f', 'make-' + flavor]
706
 
 
707
 
subprocess.call([sys.executable, 'tools/gyp_node.py'] + gyp_args)
 
707
  gyp_args += ['-f', 'make-' + flavor]
 
708
 
 
709
gyp_args += args
 
710
 
 
711
subprocess.call(gyp_args)