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

Python based Boost Build implementation syntax error corrected. Reported by Paulo Márcio Figueiredo Alves <pauloalves1986 at gmail.com>.

[SVN r80107]
This commit is contained in:
Jurko Gospodnetić
2012-08-21 10:12:00 +00:00
parent 1e07fc77a1
commit b4e81d8fff

View File

@@ -114,7 +114,7 @@ def from_command_line(command_line):
# consists of implicit feature values.
if e.find("=") != -1 or looks_like_implicit_value(e.split("/")[0]):
properties += convert_command_line_element(e)
else if e:
elif e:
targets.append(e)
return [targets, properties]