This commit is contained in:
Thomas Nagy 2016-07-07 23:32:34 +02:00
parent df96b50aa1
commit 1201a7776f
No known key found for this signature in database
GPG Key ID: 49B4C67C05277AAA
2 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@ def process_shpip(self, node):
class src2c(Task.Task):
color = 'PINK'
quiet = 1
before = ['cstaticlib']
before = ['cstlib']
def run(self):
cmd = '%s %s' % (self.env.COMP, self.inputs[0].abspath())

View File

@ -615,7 +615,7 @@ def process_shpip(self, node): <1>
class src2c(Task.Task):
color = 'PINK'
quiet = True <2>
before = ['cstaticlib'] <3>
before = ['cstlib'] <3>
def run(self):
cmd = '%s %s' % (self.env.COMP, self.inputs[0].abspath())