2
0
mirror of https://gitlab.com/ita1024/waf.git synced 2024-12-23 17:55:04 +01:00

clean up for waf 1.7

This commit is contained in:
Thomas Nagy 2012-02-04 19:41:51 +01:00
parent bfca082c42
commit 634a9ed606
2 changed files with 1 additions and 4 deletions

View File

@ -189,8 +189,7 @@ class task_gen(object):
else:
tmp.append(a)
# TODO waf 1.7
#tmp.sort()
tmp.sort()
# topological sort
out = []

View File

@ -266,8 +266,6 @@ class tex(Task.Task):
texinputs = self.env.TEXINPUTS or ''
self.TEXINPUTS = node.parent.get_bld().abspath() + os.pathsep + node.parent.get_src().abspath() + os.pathsep + texinputs + os.pathsep
self.aux_node = node.change_ext('.aux') # TODO waf 1.7 remove (left for compatibility)
# important, set the cwd for everybody
self.cwd = self.inputs[0].parent.get_bld().abspath()