2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-14 00:32:11 +00:00

Update 'make' port

[SVN r64070]
This commit is contained in:
Vladimir Prus
2010-07-16 09:51:37 +00:00
parent cdcd2099da
commit ef19d32613

View File

@@ -1,4 +1,5 @@
# Status: being ported by Vladimir Prus
# Status: ported.
# Base revision: 64068
# Copyright 2003 Dave Abrahams
# Copyright 2003 Douglas Gregor
@@ -20,9 +21,10 @@ class MakeTarget(BasicTarget):
def construct(self, name, source_targets, property_set):
action_name = property_set.get("<action>")[0]
assert action_name[0] == '@'
action_name = action_name[1:]
action = Action(get_manager(), source_targets, action_name, property_set)
# FIXME: type.type uses global data.
target = FileTarget(self.name(), 1, type.type(self.name()),
self.project(), action)
return [ b2.build.property_set.empty(),