2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-15 00:52:16 +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 495bf9add9
commit 8461ac7c11

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]