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

Merge some

[SVN r56047]
This commit is contained in:
Vladimir Prus
2009-09-05 13:13:46 +00:00
parent cb0f935cdb
commit 5576624cf8

View File

@@ -1,5 +1,5 @@
# Status: being ported by Vladimir Prus
# Base revision: 40480
# Base revision: 41324
# Copyright 2002, 2003 Dave Abrahams
# Copyright 2002, 2005, 2006 Rene Rivera
@@ -1008,4 +1008,7 @@ attribute is allowed only for top-level 'project' invocations""")
"""
c = string.join(condition, ",")
return [c + ":" + r for r in requirements]
if c.find(":") != -1:
return [c + r for r in requirements]
else:
return [c + ":" + r for r in requirements]