equal
deleted
inserted
replaced
436 command += " " + "'" + o + "'" |
436 command += " " + "'" + o + "'" |
437 else: |
437 else: |
438 command += " " + o |
438 command += " " + o |
439 |
439 |
440 # Switch off dependency file including? |
440 # Switch off dependency file including? |
441 if self.raptor.noDependInclude: |
441 if self.raptor.noDependInclude or self.raptor.noDependGenerate: |
442 command += " NO_DEPEND_INCLUDE=1" |
442 command += " NO_DEPEND_INCLUDE=1" |
|
443 |
|
444 # Switch off dependency file generation (and, implicitly, inclusion)? |
|
445 if self.raptor.noDependGenerate: |
|
446 command += " NO_DEPEND_GENERATE=1" |
443 |
447 |
444 if self.usetalon: |
448 if self.usetalon: |
445 # use the descrambler if we set it up |
449 # use the descrambler if we set it up |
446 command += ' TALON_DESCRAMBLE=' |
450 command += ' TALON_DESCRAMBLE=' |
447 if self.scrambled: |
451 if self.scrambled: |