Deleted Added
sdiff udiff text old ( 8969:b9f4e3884951 ) new ( 9843:1ddfb0679c75 )
full compact
1#! /usr/bin/env python
2# Copyright (c) 2005-2007 The Regents of The University of Michigan
3# All rights reserved.
4#
5# Redistribution and use in source and binary forms, with or without
6# modification, are permitted provided that the following conditions are
7# met: redistributions of source code must retain the above copyright
8# notice, this list of conditions and the following disclaimer;

--- 141 unchanged lines hidden (view full) ---

150 if options.jobs == 0:
151 options.jobs = cpu_count()
152 scons_opts += ' -j %d' % options.jobs
153if options.keep_going:
154 scons_opts += ' -k'
155if options.update_ref:
156 scons_opts += ' --update-ref'
157
158cmd = 'scons --ignore-style %s %s' % (scons_opts, ' '.join(targets))
159if options.no_exec:
160 print cmd
161else:
162 system(cmd)
163 sys.exit(0)